resetLogsAndDiagnostics method

  1. @override
Future<void> resetLogsAndDiagnostics()
override

Implementation

@override
Future<void> resetLogsAndDiagnostics() async {
  try {
    return methodChannel.invokeMethod<void>("resetLogsAndDiagnostics");
  } on PlatformException catch (e, s) {
    print(s);
    return;
  }
}