25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- 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;
- }
- }
|