setNotificationTitle method

  1. @override
Future<bool> setNotificationTitle(
  1. String title
)
override

Set notification title

Implementation

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