isTracking property

Future<bool> isTracking

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);
  });
}