IPs.fromJson constructor

IPs.fromJson(
  1. Map json_
)

Implementation

IPs.fromJson(core.Map json_)
  : this(
      resolved: (json_['resolved'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      serving: (json_['serving'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      servingOnAltPorts: (json_['servingOnAltPorts'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );