setNotificationTitle method

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

Set notification title (shown when connected)

Implementation

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