updateGroupProfileImage method

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

This method is used to update the group profile Image.

Implementation

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