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