copyWith method

  1. @override
AuthorizationStateWaitRegistration copyWith({
  1. TermsOfService? termsOfService,
  2. dynamic extra,
  3. 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,
);