height property

double? height

Returns a height of the widget.

Implementation

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