mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
parent
e7e419bc83
commit
01150ef2a7
213 changed files with 23972 additions and 672 deletions
14
cw_haven/lib/api/cw_haven.dart
Normal file
14
cw_haven/lib/api/cw_haven.dart
Normal file
|
@ -0,0 +1,14 @@
|
|||
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:flutter/services.dart';
|
||||
|
||||
class CwHaven {
|
||||
static const MethodChannel _channel =
|
||||
const MethodChannel('cw_haven');
|
||||
|
||||
static Future<String> get platformVersion async {
|
||||
final String version = await _channel.invokeMethod('getPlatformVersion');
|
||||
return version;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue