FirewallDenied.fromJson constructor

FirewallDenied.fromJson(
  1. Map json_
)

Implementation

FirewallDenied.fromJson(core.Map json_)
    : this(
        IPProtocol: json_['IPProtocol'] as core.String?,
        ports: (json_['ports'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );