Initialisation from plugin template.

This commit is contained in:
Aloïs Deniel
2018-01-04 06:46:03 +01:00
parent 388d89cace
commit e6c43ec60b
84 changed files with 2102 additions and 31 deletions
+11
View File
@@ -0,0 +1,11 @@
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');
}