NavSatStatus constructor

NavSatStatus({
  1. int? status,
  2. int? service,
})

Implementation

NavSatStatus({
  int? status,
  int? service,
}):
this.status = status ?? 0,
this.service = service ?? 0;