updateGroupName method
Implementation
@override
Future<bool?> updateGroupName(String jid, String name) async {
bool? response;
try {
response = await mirrorFlyMethodChannel.invokeMethod<bool>('updateGroupName', {"jid": jid, "name": name});
LogMessage.d("updateGroupName Result ", " $response");
return response;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
return false;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
return false;
}
}