AppAccessRiskVerdict.fromJson constructor

AppAccessRiskVerdict.fromJson(
  1. Map json_
)

Implementation

AppAccessRiskVerdict.fromJson(core.Map json_)
  : this(
      appsDetected: (json_['appsDetected'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );