Field constructor

Field(
  1. String name,
  2. int num,
  3. int type,
  4. double scale,
  5. double offset,
  6. String units,
  7. bool isAccumulated,
  8. ProfileType profileType,
)

Implementation

Field(
  this.name,
  this.num,
  this.type,
  this.scale,
  this.offset,
  this.units,
  this.isAccumulated,
  this.profileType,
);