Receipt.all constructor

Receipt.all({
  1. required Taxation taxation,
  2. required List<Items> items,
  3. required String ffdVersion,
  4. String? email,
  5. String? phone,
  6. Payments? payments,
  7. String? customer,
  8. String? customerInn,
  9. ClientInfo? clientInfo,
  10. List<OperatingCheckProps>? operatingCheckProps,
  11. List<SectoralCheckProps>? sectoralCheckProps,
  12. List<AddUserProp>? addUserProp,
  13. List<String>? additionalCheckProps,
})

Создает экземпляр данных чека.

Внимание, тут представлены все поля. Если вам нужны ФФД определенных версий используйте нужные конструкторы.

Implementation

Receipt.all({
  required this.taxation,
  required this.items,
  required this.ffdVersion,
  this.email,
  this.phone,
  this.payments,
  this.customer,
  this.customerInn,
  this.clientInfo,
  this.operatingCheckProps,
  this.sectoralCheckProps,
  this.addUserProp,
  this.additionalCheckProps,
});