gpt4 book ai didi

java - 如何用Flutter/Dart编写异步getter?

转载 作者:行者123 更新时间:2023-12-03 04:43:41 25 4
gpt4 key购买 nike

我正在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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com