copyWith method
NotificationSettings
copyWith({
- AndroidNotificationSettings? android,
- IOSNotificationSettings? iOS,
Implementation
NotificationSettings copyWith({
AndroidNotificationSettings? android,
IOSNotificationSettings? iOS,
}) {
return NotificationSettings(
android: android ?? this.android,
iOS: iOS ?? this.iOS,
);
}