crossAxisExtent property
double?
get
crossAxisExtent
Implementation
double? get crossAxisExtent => _crossAxisExtent;
set
crossAxisExtent
(double? value)
Implementation
set crossAxisExtent(double? value) {
if (_crossAxisExtent != value) {
_crossAxisExtent = value;
markNeedsLayout();
}
}