unmodifiable property

  1. @override
Cell get unmodifiable
override

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
Cell get unmodifiable => _cell.unmodifiable;