GatewayModel constructor

GatewayModel({
  1. required num id,
  2. String? name,
  3. String? orderCode,
  4. String? deviceVersion,
  5. String? description,
  6. String? groupId,
  7. IngestionConfig? ingestionConfigData,
  8. Object? applications,
  9. Manufacturer? manufacturer,
  10. AssetsTransform? assetsTransform,
  11. SupportedGateway? supportedGateways,
  12. SpecialUuid? specialUuid,
  13. List<DeviceModel> deviceModels = const [],
})

Returns a new GatewayModel instance.

Implementation

GatewayModel({
  required this.id,
  this.name,
  this.orderCode,
  this.deviceVersion,
  this.description,
  this.groupId,
  this.ingestionConfigData,
  this.applications,
  this.manufacturer,
  this.assetsTransform,
  this.supportedGateways,
  this.specialUuid,
  this.deviceModels = const [],
});