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