setFields method

void setFields({
  1. required double x,
  2. required double y,
  3. required int zone,
})

Sets the horizontal axis, vertical axis and zone of the point.

Parameters

  • IN x The x coordinate of the point.
  • IN y The y coordinate of the point.
  • IN zone The zone of the point.

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