mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-22 23:19:21 +01:00
13 lines
304 B
Dart
13 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");
|
||
|
}
|