video_decode_plugin/lib/video_decode_plugin_platform_interface.dart
2025-04-28 09:11:51 +08:00

31 lines
1.1 KiB
Dart

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