showCustomNotification method

  1. @override
Future<String?> showCustomNotification()
override

Implementation

@override
Future<String?> showCustomNotification() async {
  final version =
      await methodChannel.invokeMethod<String>('showCustomNotification');
  return version;
}