BNGProjection constructor

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

Implementation

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