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