mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-21 22:49:22 +01:00
12 lines
304 B
Dart
12 lines
304 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/services.dart';
|
|
import 'package:nc_photos_plugin/src/k.dart' as k;
|
|
|
|
class Logcat {
|
|
static Future<String> dump() async {
|
|
return await _methodChannel.invokeMethod("dump");
|
|
}
|
|
|
|
static const _methodChannel = MethodChannel("${k.libId}/logcat_method");
|
|
}
|