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