GKProjection constructor
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);
}