copyWith method
Android
copyWith({
- AndroidPriority? priority,
- double? secondsToShow,
- AndroidNotification? notification,
- AndroidFcmOptions? fcmOptions,
Implementation
Android copyWith({
AndroidPriority? priority,
double? secondsToShow,
AndroidNotification? notification,
AndroidFcmOptions? fcmOptions,
}) =>
Android(
priority: priority ?? this.priority,
secondsToShow: secondsToShow ?? this.secondsToShow,
notification: notification ?? this.notification,
fcmOptions: fcmOptions ?? this.fcmOptions,
);