blob: 0350ecde7e9f1d52a61e845b9dbe27cdc90d5a8f [file] [log] [blame]
import 'dart:async';
import 'package:flutter/services.dart';
class {{pluginDartClass}} {
static const PlatformMethodChannel _channel =
const PlatformMethodChannel('{{projectName}}');
static Future<String> get platformVersion =>
_channel.invokeMethod('getPlatformVersion');
}