This commit is contained in:
2021-11-17 14:57:56 -06:00
commit f17b64232d
177 changed files with 6639 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import 'dart:async';
import 'package:flutter/services.dart';
class NativeOpencvLinux {
static const MethodChannel _channel = MethodChannel('native_opencv_linux');
static Future<String?> get platformVersion async {
final String? version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}