mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-24 20:49:28 +00:00
13 lines
329 B
Dart
13 lines
329 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
class CwZano {
|
|
static const MethodChannel _channel = const MethodChannel('cw_zano');
|
|
|
|
static Future<String> get platformVersion async {
|
|
final String version =
|
|
await _channel.invokeMethod<String>('getPlatformVersion') ?? '';
|
|
return version;
|
|
}
|
|
}
|