作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在Flutter中创建一个应用程序。
在此应用程序中,我需要调用用Java编写的库。
现在,用Java编写的库具有属性的getter和setter。
我想从Flutter / Dart中调用这些getter和setter,我们想使用它。
static const MethodChannel _channel = const MethodChannel('com.example.java-library');
static Future<String> get versionCode async {
final String versionCode = await _channel.invokeMethod('getVersionCode');
return versionCode;
}
static set versionCode(final String code) {
_channel.invokeMethod('setVersionCode', code);
}
但是,如果我编写上述代码,则在运行时会收到警告。
The return type of getter 'versionCode' is 'Future<String>' which isn't assignable to the type 'String' of its setter 'versionCode'.
Try changing the types so that they are compatible.
如何避免出现此问题,使警告不出现?
最佳答案
使用如下方法会更好:
static Future<String> getVersionCode() async {
final String versionCode = await _channel.invokeMethod('getVersionCode');
return versionCode;
}
static void setVersionCode(String code){
_channel.invokeMethod('setVersionCode', code);
}
当您要检索(使用)值时:
Future<void> anyOtherPlace()async{
final String value = await getVersionCode();
}
关于java - 如何用Flutter/Dart编写异步getter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62670692/
我是一名优秀的程序员,十分优秀!