mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
18 lines
571 B
Dart
18 lines
571 B
Dart
|
import 'package:flutter/foundation.dart';
|
||
|
import 'package:flutter/services.dart';
|
||
|
|
||
|
import 'cw_monero_platform_interface.dart';
|
||
|
|
||
|
/// An implementation of [CwMoneroPlatform] that uses method channels.
|
||
|
class MethodChannelCwMonero extends CwMoneroPlatform {
|
||
|
/// The method channel used to interact with the native platform.
|
||
|
@visibleForTesting
|
||
|
final methodChannel = const MethodChannel('cw_monero');
|
||
|
|
||
|
@override
|
||
|
Future<String?> getPlatformVersion() async {
|
||
|
final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
|
||
|
return version;
|
||
|
}
|
||
|
}
|