allowMockLocation property

Future<bool> get allowMockLocation

If disallowed, the HyperTrack platform will display and outage if mocked location is detected

Implementation

static Future<bool> get allowMockLocation async {
  return _invokeSdkMethod<Map<Object?, Object?>>(SdkMethod.getAllowMockLocation)
      .then((value) {
    return deserializeAllowMockLocation(value);
  });
}