This commit is contained in:
Developer
2026-05-18 17:58:11 +08:00
commit 194033514f
49 changed files with 3414 additions and 0 deletions

View File

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