copyWith method
AuthMethod
copyWith({
- String? id,
- bool? selected,
- GoogleClientId? googleClientId,
- AppleWebOptions? appleWebOptions,
Implementation
AuthMethod copyWith({
String? id,
bool? selected,
GoogleClientId? googleClientId,
AppleWebOptions? appleWebOptions,
}) {
return AuthMethod(
id: id ?? this.id,
selected: selected ?? this.selected,
googleClientId: googleClientId ?? this.googleClientId,
appleWebOptions: appleWebOptions ?? this.appleWebOptions,
);
}