setNotificationText method

  1. @override
Future<String?> setNotificationText(
  1. String text
)
override

Implementation

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