LocationPoint.fromData constructor

LocationPoint.fromData(
  1. int _location,
  2. int _subLocation,
  3. num _x,
  4. num _y,
)

Implementation

LocationPoint.fromData(int _location, int _subLocation, num _x, num _y) {
  this.location = _location;
  this.subLocation = _subLocation;
  this.x = _x;
  this.y = _y;
}