1234567891011121314151617181920212223242526272829 |
- import 'package:plugin_platform_interface/plugin_platform_interface.dart';
- import 'native_vision_method_channel.dart';
- abstract class NativeVisionPlatform extends PlatformInterface {
- /// Constructs a NativeVisionPlatform.
- NativeVisionPlatform() : super(token: _token);
- static final Object _token = Object();
- static NativeVisionPlatform _instance = MethodChannelNativeVision();
- /// The default instance of [NativeVisionPlatform] to use.
- ///
- /// Defaults to [MethodChannelNativeVision].
- static NativeVisionPlatform get instance => _instance;
-
- /// Platform-specific implementations should set this with their own
- /// platform-specific class that extends [NativeVisionPlatform] when
- /// they register themselves.
- static set instance(NativeVisionPlatform instance) {
- PlatformInterface.verifyToken(instance, _token);
- _instance = instance;
- }
- Future<String?> getPlatformVersion() {
- throw UnimplementedError('platformVersion() has not been implemented.');
- }
- }
|