SimulateSecurityHealthAnalyticsCustomModuleResponse.fromJson constructor

SimulateSecurityHealthAnalyticsCustomModuleResponse.fromJson(
  1. Map json_
)

Implementation

SimulateSecurityHealthAnalyticsCustomModuleResponse.fromJson(core.Map json_)
    : this(
        result: json_.containsKey('result')
            ? SimulatedResult.fromJson(
                json_['result'] as core.Map<core.String, core.dynamic>)
            : null,
      );