properties property
List<PropertyReflection>
get
properties
Implementation
List<PropertyReflection> get properties => classMirror.declarations.values
.where((declaration) => declaration is VariableMirror)
.map((declaration) =>
PropertyReflection(declaration as VariableMirror, this))
.toList();