showBigTextNotification method

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

Show a notification with big text style.

Returns the notification ID.

Implementation

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