copyWith method

SendPassportAuthorizationForm copyWith({
  1. int? authorizationFormId,
  2. List<PassportElementType>? types,
})

Implementation

SendPassportAuthorizationForm copyWith({
  int? authorizationFormId,
  List<PassportElementType>? types,
}) => SendPassportAuthorizationForm(
  authorizationFormId: authorizationFormId ?? this.authorizationFormId,
  types: types ?? this.types,
);