Property class
class Property { final Symbol propertySymbol; final String property; const Property(this.propertySymbol, this.property); String toString() => 'property $property'; }
Constructors
const Property(Symbol propertySymbol, String property) #
const Property(this.propertySymbol, this.property);
Properties
final String property #
final String property
final Symbol propertySymbol #
final Symbol propertySymbol
Methods
String toString() #
Returns a string representation of this object.
docs inherited from Object
String toString() => 'property $property';