sendContactUsInfo method

  1. @override
Future<bool?> sendContactUsInfo(
  1. String title,
  2. String description
)
override

Implementation

@override
Future<bool?> sendContactUsInfo(String title, String description) async {
  bool? response;
  try {
    response = await mirrorFlyMethodChannel.invokeMethod<bool>('sendContactUsInfo', {"title": title, "description": description});
    LogMessage.d("sendContactUsInfo Result ", " $response");
    return response;
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    return false;
  } on Exception catch (error) {
    LogMessage.d("Exception ", " $error");
    return false;
  }
}