Crs constructor

const Crs({
  1. required String code,
  2. required bool infinite,
  3. (double, double)? wrapLng,
  4. (double, double)? wrapLat,
})

Constant base constructor that sets all values for the abstract Crs.

Implementation

const Crs({
  required this.code,
  required this.infinite,
  this.wrapLng,
  this.wrapLat,
});