Point.withM constructor

Point.withM({
  1. required double x,
  2. required double y,
  3. double? z,
  4. double? m,
})

Implementation

Point.withM({required this.x, required this.y, this.z, this.m});