mutable<T> static method

MutableMetaCell<T> mutable<T>({
  1. dynamic key,
})

Create a MetaCell that points to a MutableCell.

The created cell is identified by key if it is non-null.

Implementation

static MutableMetaCell<T> mutable<T>({key}) => MutableMetaCell(key: key);