setFields method
Sets the easting and northing of the point.
Parameters
- IN easting The easting coordinate of the point.
- IN northing The northing coordinate of the point.
Implementation
void setFields({required double easting, required double northing}) {
objectMethod(
_pointerId,
'Projection_BNG',
'set',
args: <String, dynamic>{
'easting': easting,
'northing': northing,
},
);
}