setFields method

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

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