removeGroupProfileImage method
Implementation
@override
Future<bool?> removeGroupProfileImage(String jid) async {
bool? response;
try {
response = await mirrorFlyMethodChannel.invokeMethod<bool>('removeGroupProfileImage', {"jid": jid});
LogMessage.d("grp_image 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;
}
}