copyWith method

Implementation

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