insertDefaultStatus method

  1. @override
Future insertDefaultStatus(
  1. String status
)
override

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;
  }
}