Field.create constructor
Field.create()
Implementation
factory Field.create(
String name,
int num,
int type,
double scale,
double offset,
String units,
bool accumulated,
ProfileType profileType,
) {
return Field(
name,
num,
type,
scale,
offset,
units,
accumulated,
profileType,
);
}