deleteCommunity method

Future deleteCommunity(
  1. String communityId
)

Delete Community with community Id

Implementation

Future deleteCommunity(String communityId) {
  return serviceLocator<CommunityDeleteUseCase>().get(communityId);
}