AuthRule constructor

const AuthRule({
  1. required AuthStrategy authStrategy,
  2. String? ownerField,
  3. String? identityClaim,
  4. String? groupClaim,
  5. List<String>? groups,
  6. String? groupsField,
  7. AuthRuleProvider? provider,
  8. List<ModelOperation>? operations,
})

Implementation

const AuthRule(
    {required this.authStrategy,
    this.ownerField,
    this.identityClaim,
    this.groupClaim,
    this.groups,
    this.groupsField,
    this.provider,
    this.operations});