copyWith method
Implementation
@override
CanTransferOwnershipResultPasswordTooFresh copyWith({
int? retryAfter,
dynamic extra,
int? clientId,
}) =>
CanTransferOwnershipResultPasswordTooFresh(
retryAfter: retryAfter ?? this.retryAfter,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);