enableSocialReportsWithCategory static method
- int categoryId
Enables 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 enableSocialReportsWithCategory(int categoryId) {
return OverlayService.enableOverlay(CommonOverlayId.socialReports.id,
categUid: categoryId);
}