width property

double? width

Returns a width of the widget.

Implementation

double? get width {
  dynamic value = _data['width'];
  return value is num ? value.toDouble() : null;
}