title property
Implementation
Future<String> get title {
return platform(
android: (_) => _androidModel.getTitle(),
ios: (_) async {
final annotation = await _iosModel.get_annotation(viewChannel: false);
return annotation.get_title();
},
);
}