ComponentParameter constructor
ComponentParameter(
- String _name,
- ComponentsParametersTypes _type,
- dynamic _option
Implementation
ComponentParameter(this._name, this._type, this._option) {
if (_option is List) {
value = _option.first;
}
}