import 'package:flutter/foundation.dart'; import 'package:flutter/services.dart'; import 'native_vision_platform_interface.dart'; /// An implementation of [NativeVisionPlatform] that uses method channels. class MethodChannelNativeVision extends NativeVisionPlatform { /// The method channel used to interact with the native platform. @visibleForTesting final methodChannel = const MethodChannel('native_vision'); @override Future getPlatformVersion() async { final version = await methodChannel.invokeMethod('getPlatformVersion'); return version; } }