cake_wallet/cw_shared_external/lib/cw_shared_external.dart
mkyq 01150ef2a7
Hv (#295)
* hv
* Change build version
2022-03-30 17:57:04 +02:00

14 lines
335 B
Dart

import 'dart:async';
import 'package:flutter/services.dart';
class CwSharedExternal {
static const MethodChannel _channel =
const MethodChannel('cw_shared_external');
static Future<String> get platformVersion async {
final String version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}