width property
double?
get
width
Returns a width of the widget.
Implementation
double? get width {
dynamic value = _data['width'];
return value is num ? value.toDouble() : null;
}
Returns a width of the widget.
double? get width {
dynamic value = _data['width'];
return value is num ? value.toDouble() : null;
}