insertDefaultStatus method
Implementation
@override
Future<dynamic> insertDefaultStatus(String status) async {
try {
await mirrorFlyMethodChannel
.invokeMethod('insertDefaultStatus', {"status": status});
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}