userId
A value representing the logged in user.
On Windows this is the user SID on all other platforms it is the value returned by
id
.Be aware that if you are running under
sudo
then you id
will change to 0.Possible values:
- Windows - S-1-5-21
- All others - 1000
- if running under sudo - 0
import "package:system_info2/system_info2.dart";
print("User ID : ${SysInfo.userId}");
Please help expand the list of examples by raising an issue with examples on the onpub.dev github site.
Last modified 1yr ago