setFields method

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

Sets the horizontal axis and vertical axis of the point.

Parameters

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

Implementation

void setFields({required double x, required double y}) {
  objectMethod(
    _pointerId,
    'Projection_LAM',
    'set',
    args: <String, dynamic>{
      'x': x,
      'y': y,
    },
  );
}