Wpt constructor
Wpt({
- double? lat = 0.0,
- double? lon = 0.0,
- double? ele,
- DateTime? time,
- double? magvar,
- double? geoidheight,
- String? name,
- String? cmt,
- String? desc,
- String? src,
- List<
Link> ? links, - String? sym,
- String? type,
- FixType? fix,
- int? sat,
- double? hdop,
- double? vdop,
- double? pdop,
- double? ageofdgpsdata,
- int? dgpsid,
- Map<
String, String> ? extensions,
Construct a new Wpt object.
Implementation
Wpt(
{this.lat = 0.0,
this.lon = 0.0,
this.ele,
this.time,
this.magvar,
this.geoidheight,
this.name,
this.cmt,
this.desc,
this.src,
List<Link>? links,
this.sym,
this.type,
this.fix,
this.sat,
this.hdop,
this.vdop,
this.pdop,
this.ageofdgpsdata,
this.dgpsid,
Map<String, String>? extensions})
: links = links ?? [],
extensions = extensions ?? <String, String>{};