NetworkDetails constructor

NetworkDetails({
  1. required String macAddress,
  2. String? ipv4,
  3. String? ipv6,
})

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,
      );