Point constructor

Point(
  1. {@required LatLng location,
  2. @required int locTime,
  3. CoordType coordType: CoordType.BD09LL,
  4. double radius,
  5. int direction,
  6. double speed,
  7. double height}
)

有参构造

Implementation

Point(
    {@required this.location,
    @required this.locTime,
    this.coordType: CoordType.BD09LL,
    this.radius,
    this.direction,
    this.speed,
    this.height});