copyWith method
Creates a copy of the object replaced with new values.
Implementation
IOSNotificationOptions copyWith({
bool? showNotification,
bool? playSound,
}) =>
IOSNotificationOptions(
showNotification: showNotification ?? this.showNotification,
playSound: playSound ?? this.playSound,
);