NetworkDetails constructor
Implementation
NetworkDetails({
/// The device's MAC address.
required String macAddress,
/// The device's local IPv4 address (undefined if not configured).
String? ipv4,
/// The device's local IPv6 address (undefined if not configured).
String? ipv6,
}) : _wrapped = $js.NetworkDetails(
macAddress: macAddress,
ipv4: ipv4,
ipv6: ipv6,
);