showFullScreenNotification method

Future<int> showFullScreenNotification({
  1. required String title,
  2. required String message,
  3. String? targetScreen,
  4. Map<String, dynamic>? extraData,
})

Implementation

Future<int> showFullScreenNotification({
  required String title,
  required String message,
  String? targetScreen,
  Map<String, dynamic>? extraData,
}) {
  throw UnimplementedError(
    'showFullScreenNotification() has not been implemented.',
  );
}