unmodifiable property
Creates an unmodifiable view of this cell.
Returns a cell that:
- Shares the same internal state
- Blocks all mutating operations
- Maintains all existing synapses
Implementation
@override
C get unmodifiable => (_properties.bind as C).unmodifiable as C;