cake_wallet/cw_shared_external/lib/cw_shared_external.dart
2022-02-24 14:23:12 +03: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;
}
}