copyWith method

AppleWebOptions copyWith({
  1. String? clientId,
  2. String? redirectUri,
})

Implementation

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