copyWith method
Implementation
RecoveryEmailAddress copyWith({
String? recoveryEmailAddress,
dynamic extra,
int? clientId,
}) => RecoveryEmailAddress(
recoveryEmailAddress: recoveryEmailAddress ?? this.recoveryEmailAddress,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);