AccessSchema constructor

AccessSchema({
  1. required MapAccessType type,
  2. List<ConditionSchema> conditions = const [],
})

Returns a new AccessSchema instance.

Implementation

AccessSchema({
  required this.type,
  this.conditions = const [],
});