secondaryKey property

Key? get secondaryKey

Implementation

Key? get secondaryKey => _secondaryKey;
set secondaryKey (Key? newKey)

Implementation

set secondaryKey(Key? newKey) {
  if (_secondaryKey != newKey) {
    _secondaryKey = newKey;
    markNeedsLayout();
  }
}