makeAdmin method

  1. @override
Future<void> makeAdmin(
  1. String groupjid,
  2. String userjid,
  3. dynamic callback(
    1. FlyResponse response
    )?
)
override

This method is used to make the user as admin in a group.

Implementation

@override
Future<void> makeAdmin(String groupjid, String userjid,
    Function(FlyResponse response)? callback) async {
  bool? response;
  try {
    response = await mirrorFlyMethodChannel.invokeMethod<bool>(
        'makeAdmin', {"jid": groupjid, "userjid": userjid});
    LogMessage.d("report Result ", " $response");
    callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
    // return 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)));
  }
}