CedarQuery constructor

const CedarQuery({
  1. required String description,
  2. required CedarEntityId? principal,
  3. required CedarEntityId? resource,
  4. required CedarEntityId action,
  5. required Map<String, Object?> context,
  6. required CedarAuthorizationDecision decision,
  7. required List<String> reasons,
  8. required List<String> errors,
})

Implementation

const CedarQuery({
  required this.description,
  required this.principal,
  required this.resource,
  required this.action,
  required this.context,
  required this.decision,
  required this.reasons,
  required this.errors,
});