removeProfileImage method
This method is used to remove the profile image.
Implementation
@override
Future<void> removeProfileImage(
Function(FlyResponse response)? callback) async {
bool? profileResponse;
try {
profileResponse =
await mirrorFlyMethodChannel.invokeMethod<bool>('removeProfileImage');
LogMessage.d("removeProfileImage Result ", " $profileResponse");
callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
// return profileResponse;
} 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)));
}
}