disableSocialReportsWithCategory static method
- int categoryId
Disables the social reports overlay for a specific category.
Parameters
categoryId: The overlay category identifier.
Returns
- GemError.success: Category disabled successfully.
- GemError.notFound: Overlay or category not found.
Implementation
static GemError disableSocialReportsWithCategory(int categoryId) {
return OverlayService.disableOverlay(
CommonOverlayId.socialReports.id,
categUid: categoryId,
);
}