nc-photos/plugin/lib/src/logcat.dart
2022-05-24 00:05:04 +08:00

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