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) {
    LogMessage.d("Platform Exception =", " $e");
    rethrow;
  } on Exception catch (error) {
    LogMessage.d("Exception ", " $error");
    rethrow;
  }
}