MGRSProjection constructor
MGRSProjection({})
Creates an MGRSProjection.
Parameters
easting: (double) Easting coordinate.northing: (double) Northing coordinate.zone: (String) Grid zone designator.letters: (String) 100k grid square letters.
Implementation
factory MGRSProjection({
required double easting,
required double northing,
required String zone,
required String letters,
}) {
return MGRSProjection._create(easting, northing, zone, letters);
}