BMFLocation constructor Null safety
- {required BMFCoordinate? coordinate,
- double? altitude,
- double? horizontalAccuracy,
- double? verticalAccuracy,
- double? course,
- double? speed,
- double? accuracy,
- int? satellitesNum,
- String? timestamp}
Implementation
BMFLocation({
required this.coordinate,
this.altitude,
this.horizontalAccuracy,
this.verticalAccuracy,
this.course,
this.speed,
this.accuracy,
this.satellitesNum,
this.timestamp,
});