getGroupMembersList method

  1. @override
Future<void> getGroupMembersList(
  1. String jid,
  2. bool? server,
  3. dynamic callback(
    1. FlyResponse response
    )?
)
override

This method is used to get the group members list.

Implementation

@override
Future<void> getGroupMembersList(String jid, bool? server,
    Function(FlyResponse response)? callback) async {
  //getGroupMembers
  String? response;
  try {
    response =
        await mirrorFlyMethodChannel.invokeMethod('getGroupMembersList', {
      "jid": jid,
      "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)));
  }
}