addFeedbackLogFile method
Implementation
@override
Future<void> addFeedbackLogFile(File file) async {
try {
return methodChannel.invokeMethod<void>("addFeedbackLogFile", {"fileAbsolutePath": file.absolute.path});
} on PlatformException catch (e, s) {
print(s);
return;
}
}