publicWriteAccess property

bool publicWriteAccess

Get whether the public is allowed to write this object.

Implementation

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

Set whether the public is allowed to read this object.

Implementation

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