isTracking property Null safety
Reflects the tracking intent for the device.
Implementation
static Future<bool> get isTracking async {
return _invokeSdkMethod<Map<Object?, Object?>>(SdkMethod.getIsTracking)
.then((value) {
return deserializeIsTracking(value);
});
}