Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- import 'dart:async';
-
- import 'package:flutter/services.dart';
-
- class ZhiyingBaseWidget {
- static const MethodChannel _channel =
- const MethodChannel('zhiying_base_widget');
-
- static Future<String> get platformVersion async {
- final String version = await _channel.invokeMethod('getPlatformVersion');
- return version;
- }
- }
|