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