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