call method

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

Implementation

@override
PointField call({
  String? name,
  int? offset,
  int? datatype,
  int? count,
}) => PointField(
name: name,
offset: offset,
datatype: datatype,
count: count,
);