setNotificationTitle method
Implementation
@override
Future<String?> setNotificationTitle(String title) async {
final version = await methodChannel
.invokeMethod<String>('setNotificationTitle', {"title": title});
return version;
}
@override
Future<String?> setNotificationTitle(String title) async {
final version = await methodChannel
.invokeMethod<String>('setNotificationTitle', {"title": title});
return version;
}