Files
flutter_opencv_native/native_opencv_macos/lib/native_opencv_macos.dart
2021-11-17 14:57:56 -06:00

14 lines
327 B
Dart

import 'dart:async';
import 'package:flutter/services.dart';
class NativeOpencvMacos {
static const MethodChannel _channel = MethodChannel('native_opencv_macos');
static Future<String?> get platformVersion async {
final String? version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}