是否可以选择在 Dart 中的条件和值中仅使用一次变量?或者你有任何缩短的解决方案吗?
条件:
final phoneHeight = PhoneSize.deviceHeight(context);
final sectionHeight=phoneHeight >=1000?phoneHeight*0.85:phoneHeight;
final sectionHeight = switch(PhoneSize.deviceHeight(context)) {
>= 1000 && final v => v * 0.85,
final v => v,
};