getPropValue method

dynamic getPropValue(
  1. String assignedName
)

Returns the value the prop was populated with, or null if the prop was not populated.

Implementation

dynamic getPropValue(String assignedName) {
	return this._state.widget._getPropValue(assignedName);
}