primaryKey property

Key? get primaryKey

Implementation

Key? get primaryKey => _primaryKey!;
set primaryKey (Key? newKey)

Implementation

set primaryKey(Key? newKey) {
  if (_primaryKey != newKey) {
    _primaryKey = newKey;
    markNeedsLayout();
  }
}