Initial project

This commit is contained in:
Cody
2026-03-06 14:56:17 +08:00
parent 977b627b15
commit bf9e099747
1180 changed files with 50973 additions and 0 deletions

View File

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