SecurityResult.allow constructor

const SecurityResult.allow({
  1. required String message,
  2. Map<String, dynamic>? updatedInput,
  3. String? decisionReason,
})

Implementation

const SecurityResult.allow({
  required this.message,
  this.updatedInput,
  this.decisionReason,
}) : behavior = 'allow';