groupAdmin method

dynamic groupAdmin()

Implementation

groupAdmin() {
  Mirrorfly.isGroupAdmin(
          userJid: SessionManagement.getUserJID()!,
          groupJid: profile.jid.checkNull())
      .then((bool? value) {
    if (value != null) {
      _isAdmin(value);
    }
  });
}