GKProjection constructor

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

Creates a new GKProjection.

Parameters

  • x: (double) The horizontal (easting) coordinate.
  • y: (double) The vertical (northing) coordinate.
  • zone: (int) The GK zone number.

Implementation

factory GKProjection({
  required double x,
  required double y,
  required int zone,
}) {
  return GKProjection._create(x, y, zone);
}