我正在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.
如何避免出现此问题,以免出现警告?
答案 0 :(得分:1)
使用这样的方法会更好:
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();
}