Sub2ApiAdminRiskControlAuditResult constructor
Sub2ApiAdminRiskControlAuditResult({
- required bool flagged,
- required String highestCategory,
- required Sub2ApiDecimal highestScore,
- required Sub2ApiDecimal compositeScore,
- required Map<
String, Sub2ApiDecimal> categoryScores, - required Map<
String, Sub2ApiDecimal> thresholds,
Implementation
Sub2ApiAdminRiskControlAuditResult({
required this.flagged,
required this.highestCategory,
required this.highestScore,
required this.compositeScore,
required Map<String, Sub2ApiDecimal> categoryScores,
required Map<String, Sub2ApiDecimal> thresholds,
}) : categoryScores = Map.unmodifiable(categoryScores),
thresholds = Map.unmodifiable(thresholds);