copyWith method
Implementation
GoogleClientId copyWith({
String? ios,
String? android,
String? web,
}) {
return GoogleClientId(
ios: ios ?? this.ios,
android: android ?? this.android,
web: web ?? this.web,
);
}
GoogleClientId copyWith({
String? ios,
String? android,
String? web,
}) {
return GoogleClientId(
ios: ios ?? this.ios,
android: android ?? this.android,
web: web ?? this.web,
);
}