showImageNotification method
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.',
);
}