getProfileStatusList method
Future
getProfileStatusList(
)
override
Implementation
@override
Future<dynamic> getProfileStatusList() async {
//getStatusList
dynamic statusResponse;
try {
statusResponse = await mirrorFlyMethodChannel.invokeMethod('getProfileStatusList');
LogMessage.d("getProfileStatusList", "$statusResponse");
return statusResponse;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}