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