copyWith method
Implementation
AppleWebOptions copyWith({
String? clientId,
String? redirectUri,
}) {
return AppleWebOptions(
clientId: clientId ?? this.clientId,
redirectUri: redirectUri ?? this.redirectUri,
);
}
AppleWebOptions copyWith({
String? clientId,
String? redirectUri,
}) {
return AppleWebOptions(
clientId: clientId ?? this.clientId,
redirectUri: redirectUri ?? this.redirectUri,
);
}