获取系统的环境变量

Android社区 收藏文章

Use Platform.environment to get the environment for the current process.

import 'dart:io' show Platform;

main() {
  Map<String, String> envVars = Platform.environment;
  print(envVars['PATH']);
}
相关标签

扫一扫

在手机上阅读