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