PortRange.fromJson constructor

PortRange.fromJson(
  1. Map json_
)

Implementation

PortRange.fromJson(core.Map json_)
  : this(
      first: json_['first'] as core.int?,
      last: json_['last'] as core.int?,
    );