AppAccessRiskVerdict.fromJson constructor

AppAccessRiskVerdict.fromJson(
  1. Map json_
)

Implementation

AppAccessRiskVerdict.fromJson(core.Map json_)
    : this(
        otherApps: json_.containsKey('otherApps')
            ? json_['otherApps'] as core.String
            : null,
        playOrSystemApps: json_.containsKey('playOrSystemApps')
            ? json_['playOrSystemApps'] as core.String
            : null,
      );