disableOverlayOfflineDataGrabber static method

GemError disableOverlayOfflineDataGrabber(
  1. int uid
)

Disables the offline data grabber for the overlay with the given uid.

Parameters

  • IN uid The overlay uid

Returns

  • GemError.success on success, GemError.notFound if the overlay is not found

Implementation

static GemError disableOverlayOfflineDataGrabber(int uid) {
  final OperationResult resultString = staticMethod(
    'OverlayService',
    'disableOverlayOfflineDataGrabber',
    args: uid,
  );

  return GemErrorExtension.fromCode(resultString['result']);
}