Files
flutter_plugin_appcenter/lib/appcenter.dart
T
2018-01-04 06:46:03 +01:00

12 lines
262 B
Dart

import 'dart:async';
import 'package:flutter/services.dart';
class Appcenter {
static const MethodChannel _channel =
const MethodChannel('appcenter');
static Future<String> get platformVersion =>
_channel.invokeMethod('getPlatformVersion');
}