Acl constructor

Acl(
  1. Iterable<AclEntry> entries
)

Create a new ACL with a list of ACL entries.

Implementation

Acl(Iterable<AclEntry> entries) : _entries = List.from(entries);