mirror of
https://github.com/farcasclaudiu/flutter_plugin_appcenter.git
synced 2026-06-22 07:01:30 +03:00
12 lines
262 B
Dart
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');
|
|
}
|