autoKey static method

Object? autoKey(
  1. ValueCell cell
)

Generate a key for cell

If a generate cell key function is in-effect (by withAutoKeys), it is called, on cell, to generate a new cell key, which is returned.

Implementation

static Object? autoKey(ValueCell cell) => _generateKey?.call(cell);