PointField constructor

PointField({
  1. String? name,
  2. int? offset,
  3. int? datatype,
  4. int? count,
})

Implementation

PointField({
  String? name,
  int? offset,
  int? datatype,
  int? count,
}):
this.name = name ?? '',
this.offset = offset ?? 0,
this.datatype = datatype ?? 0,
this.count = count ?? 0;