getAllGroups method
This method is used to get All the groups.
Implementation
@override
Future<void> getAllGroups(
[bool? server, Function(FlyResponse response)? callback]) async {
String? response;
try {
response = await mirrorFlyMethodChannel
.invokeMethod('getAllGroups', {"server": server});
callback?.call(FlyResponse(true,
convertProfileDetailsJsonFromString(response), FlyConstants.empty));
// return convertProfileDetailsJsonFromString(response);
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}