FirewallLogConfig.fromJson constructor

FirewallLogConfig.fromJson(
  1. Map json_
)

Implementation

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