EffectiveEventThreatDetectionCustomModule.fromJson constructor

EffectiveEventThreatDetectionCustomModule.fromJson(
  1. Map json_
)

Implementation

EffectiveEventThreatDetectionCustomModule.fromJson(core.Map json_)
    : this(
        cloudProvider: json_['cloudProvider'] as core.String?,
        config: json_.containsKey('config')
            ? json_['config'] as core.Map<core.String, core.dynamic>
            : null,
        description: json_['description'] as core.String?,
        displayName: json_['displayName'] as core.String?,
        enablementState: json_['enablementState'] as core.String?,
        name: json_['name'] as core.String?,
        type: json_['type'] as core.String?,
      );