标签: flutter dart
我致力于使代码在运行时性能和应用程序大小方面都尽可能高效。目前,我正在编写一个依赖于其他一些仅使用1个类的软件包的软件包。
使用关键字“ show”是否会改善性能或大小,还是编译器在构建apk时会删除未使用的类?
import 'dart:async' show Stream; import 'dart:convert' show json;