setNotificationTitle method
Set notification title
Implementation
@override
Future<bool> setNotificationTitle(String title) async {
final result = await methodChannel.invokeMethod<bool>(
'setNotificationTitle',
{'title': title},
);
return result ?? false;
}