macAddress static method
Implementation
static String macAddress() {
return List.generate(
6, (_) => _random.nextInt(256).toRadixString(16).padLeft(2, '0'))
.join(':')
.toUpperCase();
}
static String macAddress() {
return List.generate(
6, (_) => _random.nextInt(256).toRadixString(16).padLeft(2, '0'))
.join(':')
.toUpperCase();
}