showImageNotification method

Future<int> showImageNotification({
  1. required String title,
  2. required String message,
  3. required String imageUrl,
  4. String? channelId,
  5. int? priority,
  6. bool? autoCancel,
  7. String? targetScreen,
  8. Map<String, dynamic>? extraData,
})

Show a notification with an image.

Returns the notification ID.

Implementation

Future<int> showImageNotification({
  required String title,
  required String message,
  required String imageUrl,
  String? channelId,
  int? priority,
  bool? autoCancel,
  String? targetScreen,
  Map<String, dynamic>? extraData,
}) {
  throw UnimplementedError(
    'showImageNotification() has not been implemented.',
  );
}