soft_ifconfig 0.1.0-dev soft_ifconfig: ^0.1.0-dev copied to clipboard
A Dart/Flutter package/library for get the mac address from Windows, macOS and Linux.
example/soft_ifconfig_example.dart
// ignore_for_file: avoid_print
import 'package:soft_ifconfig/soft_ifconfig.dart';
Future<void> main() async {
final macAddress = await SoftIfconfig.getMacAddress();
print(macAddress);
}