nc-photos/plugin/lib/src/logcat.dart

13 lines
304 B
Dart
Raw Normal View History

2022-05-23 16:18:51 +02:00
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");
}