Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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;
- }
- }
|