disableSocialReportsWithCategory static method
- int categoryId
Disables the social reports overlay for a specified category.
Parameters
- IN categoryId The overlay category id
Returns
- GemError.success on success, GemError.notFound if the overlay is not found
Throws
- An exception if it fails.
Implementation
static GemError disableSocialReportsWithCategory(int categoryId) {
return OverlayService.disableOverlay(CommonOverlayId.socialReports.id,
categUid: categoryId);
}