addFeedbackLogFile method

  1. @override
Future<void> addFeedbackLogFile(
  1. File file
)
override

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