RouterNatLogConfig.fromJson constructor
RouterNatLogConfig.fromJson(
- 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,
);