getLocationPoint method

LocationPoint? getLocationPoint()

Implementation

LocationPoint? getLocationPoint() {
  return this.isValid()
      ? LocationPoint.fromData(
          this.location, this.subLocation, this.x, this.y)
      : null;
}