copyWith method

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

Implementation

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