publicReadAccess property

bool publicReadAccess

Get whether the public is allowed to read this object.

Implementation

bool get publicReadAccess => _map['*']?.read ?? false;
void publicReadAccess=(bool allowed)

Set whether the public is allowed to read this object.

Implementation

set publicReadAccess(bool allowed) {
  _map['*'] = _Permissions(read: allowed, write: _map['*']?.write ?? false);
}