GridEntity constructor

GridEntity({
  1. required String? appId,
  2. String? description,
  3. List<BodyComponentEntity>? bodyComponents,
  4. String? gridViewId,
  5. StorageConditionsEntity? conditions,
})

Implementation

GridEntity({
  required this.appId,
  this.description,
  this.bodyComponents,
  this.gridViewId,
  this.conditions,
});