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