setFields method
Update the coordinate fields of this GK point.
Parameters
x: (double) The new horizontal (easting) coordinate.y: (double) The new vertical (northing) coordinate.zone: (int) The GK zone.
Implementation
void setFields({required double x, required double y, required int zone}) {
objectMethod(
_pointerId,
'Projection_GK',
'set',
args: <String, dynamic>{'x': x, 'y': y, 'zone': zone},
);
}