标签: dart
我需要弄清楚当前进程的pid, 但是我在Process.dart中找不到任何静态方法,如何获取?
答案 0 :(得分:0)
导入 dart:io 并使用 pid 属性。
dart:io
pid
import 'dart:io'; ... print('pid: $pid');
https://api.dart.dev/stable/2.13.4/dart-io/Process/pid.html https://api.flutter.dev/flutter/dart-io/pid.html