containerWidth property

int? get containerWidth

The fixed width, or null to size from the child.

Implementation

int? get containerWidth => _width;
set containerWidth (int? value)

Sets the fixed width.

Implementation

set containerWidth(int? value) => _width = value;