getGroupProfile method
Future<void>
getGroupProfile(
- String groupJid,
- bool server,
- dynamic callback(
- FlyResponse response
override
This method is used to get the group profile.
Implementation
@override
Future<void> getGroupProfile(String groupJid, bool server,
Function(FlyResponse response)? callback) async {
String? res;
try {
res = await mirrorFlyMethodChannel.invokeMethod(
'getGroupProfile', {"groupJid": groupJid, "server": server});
callback?.call(FlyResponse(
true, convertProfileDetailJsonFromString(res), FlyConstants.empty));
// return convertProfileDetailJsonFromString(res);
} 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)));
}
}