copyWith method
AuthorizationStateWaitRegistration
copyWith({
- TermsOfService? termsOfService,
- dynamic extra,
- int? clientId,
override
Implementation
@override
AuthorizationStateWaitRegistration copyWith({
TermsOfService? termsOfService,
dynamic extra,
int? clientId,
}) => AuthorizationStateWaitRegistration(
termsOfService: termsOfService ?? this.termsOfService,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);