listOf method

MultiContainerRenderObjectList<ChildType, ParentDataType, KeyType>? listOf(
  1. KeyType key, [
  2. bool createIfNotExists = false
])

Implementation

MultiContainerRenderObjectList<ChildType, ParentDataType, KeyType>? listOf(
        KeyType key,
        [bool createIfNotExists = false]) =>
    createIfNotExists ? _getOrCreateListOf(key) : _data[key];