gnss_status

Last updated:

0 purchases

gnss_status Image
gnss_status Images
Add to Cart

Description:

gnss status

gnss_status #
A package that allows you to easily fetch the GNSSStatus via inbuilt streams.
Example: Fetch GNSSStatusModel #
StreamBuilder<GnssStatusModel>(
builder: (context, snapshot) {
if(snapshot.data == null) {
return CircularProgressIndicator();
}
List<Map<String, dynamic>> toSend = [];
snapshot..data.status.forEach((element) {
toSend.add(element.toJson());
});
return Text(toSend.toString() ?? "");
},
stream: GnssStatus().gnssStatusEvents,
),
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.