AssetsTransform constructor

AssetsTransform({
  1. required num id,
  2. String? name,
  3. String? version,
  4. AssetsTransformKindEnum? kind,
  5. String? value,
  6. String? description,
  7. String? type,
})

Returns a new AssetsTransform instance.

Implementation

AssetsTransform({
  required this.id,
  this.name,
  this.version,
  this.kind,
  this.value,
  this.description,
  this.type,
});