fromValue static method

UIRemoteNotificationType fromValue(
  1. int value
)

Implementation

static UIRemoteNotificationType fromValue(int value) => switch (value) {
  0 => UIRemoteNotificationTypeNone,
  1 => UIRemoteNotificationTypeBadge,
  2 => UIRemoteNotificationTypeSound,
  4 => UIRemoteNotificationTypeAlert,
  8 => UIRemoteNotificationTypeNewsstandContentAvailability,
  _ => throw ArgumentError('Unknown value for UIRemoteNotificationType: $value'),
};