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