setMyProfileStatus method
Implementation
@override
Future<dynamic> setMyProfileStatus(String status, String statusId) async {
//updateProfileStatus
dynamic profileResponse;
try {
profileResponse = await mirrorFlyMethodChannel.invokeMethod('setMyProfileStatus', {"status": status, "statusId": statusId});
LogMessage.d("setMyProfileStatus Result ", " $profileResponse");
return profileResponse;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}