Point constructor

Point({
  1. String? extra,
  2. int? client_id,
  3. double? x,
  4. double? y,
})

Implementation

Point({
  super.extra,
  super.client_id,
  this.x,
  this.y,
});