disableOverlayOfflineDataGrabber static method
Disable the offline data grabber for the specified overlay UID.
Parameters
uid: Overlay UID.
Returns
- GemError.success on success.
- GemError.notFound when the overlay is unknown.
See also:
- OverlayInfo.uid - Retrieve the unique identifier of an overlay.
- enableOverlayOfflineDataGrabber - Enable the offline data grabber for an overlay.
- isOverlayOfflineDataGrabberEnabled - Check whether the offline data grabber is enabled for an overlay.
- isOverlayOfflineDataGrabberSupported - Check whether an overlay supports the offline data grabber feature.
Implementation
static GemError disableOverlayOfflineDataGrabber(int uid) {
final OperationResult resultString = staticMethod(
'OverlayService',
'disableOverlayOfflineDataGrabber',
args: uid,
);
return GemErrorExtension.fromCode(resultString['result']);
}