setFields method

void setFields({
  1. required double easting,
  2. required double northing,
})

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},
  );
}