setMyProfileStatus method
Future<void>
setMyProfileStatus(
- String status,
- String statusId,
- dynamic callback(
- FlyResponse response
override
This method is used to set the user profile status.
Implementation
@override
Future<void> setMyProfileStatus(String status, String statusId,
Function(FlyResponse response)? callback) async {
//updateProfileStatus
dynamic profileResponse;
try {
profileResponse = await mirrorFlyMethodChannel.invokeMethod(
'setMyProfileStatus', {"status": status, "statusId": statusId});
LogMessage.d("setMyProfileStatus Result ", " $profileResponse");
callback?.call(FlyResponse(true, profileResponse, 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)));
}
}