List<TopLevelVariable> properties

All variables ("properties") except constants.

Source

List<TopLevelVariable> get properties {
  return _getVariables().where((v) => !v.isConst).toList(growable: false)
    ..sort(byName);
}