copyWith method
Implementation
@override
FirebaseAuthenticationSettingsIos copyWith({
String? deviceToken,
bool? isAppSandbox,
}) =>
FirebaseAuthenticationSettingsIos(
deviceToken: deviceToken ?? this.deviceToken,
isAppSandbox: isAppSandbox ?? this.isAppSandbox,
);