PortRange.fromJson constructor

PortRange.fromJson(
  1. Map json_
)

Implementation

PortRange.fromJson(core.Map json_)
    : this(
        max: json_['max'] as core.String?,
        min: json_['min'] as core.String?,
      );