BNGProjection constructor

BNGProjection({
  1. required double easting,
  2. required double northing,
})

Creates a new BNGProjection.

Parameters

  • easting: (double) Easting coordinate.
  • northing: (double) Northing coordinate.

Implementation

factory BNGProjection({required double easting, required double northing}) {
  return BNGProjection._create(easting, northing);
}