machine_guid 0.1.0
machine_guid: ^0.1.0 copied to clipboard
This is a Dart tool used to retrieve the Machine GUID of a Windows system.
example/machine_guid_example.dart
import 'package:machine_guid/machine_guid.dart';
void main() {
var guid = getMachineGuid();
print('MachineGuid: $guid');
}