setFields method
Update the easting and northing for this BNG point.
Parameters
easting: (double) The new easting value.northing: (double) The new northing value.
Implementation
void setFields({required double easting, required double northing}) {
objectMethod(
_pointerId,
'Projection_BNG',
'set',
args: <String, dynamic>{'easting': easting, 'northing': northing},
);
}