RouterNatLogConfig.fromJson constructor

RouterNatLogConfig.fromJson(
  1. Map json_
)

Implementation

RouterNatLogConfig.fromJson(core.Map json_)
    : this(
        enable:
            json_.containsKey('enable') ? json_['enable'] as core.bool : null,
        filter: json_.containsKey('filter')
            ? json_['filter'] as core.String
            : null,
      );