BMFLocation constructor Null safety

BMFLocation(
  1. {required BMFCoordinate? coordinate,
  2. double? altitude,
  3. double? horizontalAccuracy,
  4. double? verticalAccuracy,
  5. double? course,
  6. double? speed,
  7. double? accuracy,
  8. int? satellitesNum,
  9. String? timestamp}
)

Implementation

BMFLocation({
  required this.coordinate,
  this.altitude,
  this.horizontalAccuracy,
  this.verticalAccuracy,
  this.course,
  this.speed,
  this.accuracy,
  this.satellitesNum,
  this.timestamp,
});