getLogs method

Future<List<String>> getLogs()

Retrieves V2Ray logs from the system logcat. Returns a Future that completes with a List of log lines. On non-Android platforms, returns an empty list.

Implementation

Future<List<String>> getLogs() async {
  throw UnimplementedError(
    'getLogs() has not been implemented.',
  );
}