LAMProjection constructor

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

Creates a new LAMProjection

Implementation

factory LAMProjection({required double x, required double y}) {
  return LAMProjection._create(x, y);
}