AssetSegment constructor

AssetSegment({
  1. String name,
  2. String description,
  3. bool isDefault,
  4. String segmentId,
  5. String createdById,
  6. String modifiedById,
  7. int assetId,
  8. Object asset,
  9. List<ModelInfo> models = const [],
  10. List<Object> modelEntities = const [],
})

Returns a new AssetSegment instance.

Implementation

AssetSegment({
  this.name,
  this.description,
  this.isDefault,
  this.segmentId,
  this.createdById,
  this.modifiedById,
  this.assetId,
  this.asset,
  this.models = const [],
  this.modelEntities = const [],
});