Datum constructor

Datum({
  1. int? id,
  2. String? name,
  3. String? status,
  4. dynamic connectionResponse,
  5. DateTime? channelUpdatedAt,
  6. int? statusCode,
  7. DatumSettings? settings,
  8. List? auth,
  9. int? connection,
  10. int? ordersSync,
  11. int? inventorySync,
  12. int? catalogSync,
  13. String? ordersSyncedOn,
  14. String? inventorySyncedOn,
  15. String? baseChannelCode,
  16. BaseChannel? baseChannel,
  17. String? catalogSyncedOn,
  18. String? orderStatusMapper,
  19. String? paymentStatusMapper,
  20. String? brandName,
  21. bool? allowMarkAsPaid,
  22. List? warehouseLocations,
  23. bool? skipUnpaidPrepaid,
  24. int? vendorId,
  25. List? b2BChannels,
})

Implementation

Datum({
  this.id,
  this.name,
  this.status,
  this.connectionResponse,
  this.channelUpdatedAt,
  this.statusCode,
  this.settings,
  this.auth,
  this.connection,
  this.ordersSync,
  this.inventorySync,
  this.catalogSync,
  this.ordersSyncedOn,
  this.inventorySyncedOn,
  this.baseChannelCode,
  this.baseChannel,
  this.catalogSyncedOn,
  this.orderStatusMapper,
  this.paymentStatusMapper,
  this.brandName,
  this.brandLogo,
  this.allowMarkAsPaid,
  this.warehouseLocations,
  this.skipUnpaidPrepaid,
  this.vendorId,
  this.b2BChannels,
});