Initial project
This commit is contained in:
17
packages/l10n_sdk/lib/l10n_sdk_method_channel.dart
Normal file
17
packages/l10n_sdk/lib/l10n_sdk_method_channel.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
|
||||
import 'l10n_sdk_platform_interface.dart';
|
||||
|
||||
/// An implementation of [L10nSdkPlatform] that uses method channels.
|
||||
class MethodChannelL10nSdk extends L10nSdkPlatform {
|
||||
/// The method channel used to interact with the native platform.
|
||||
@visibleForTesting
|
||||
final methodChannel = const MethodChannel('l10n_sdk');
|
||||
|
||||
@override
|
||||
Future<String?> getPlatformVersion() async {
|
||||
final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
|
||||
return version;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user