trailing property
PositionComponent?
get
trailing
An optional component to render in the top-right corner of the modal.
The component will be automatically positioned based on padding and its own size.
Implementation
PositionComponent? get trailing => _trailing;
set
trailing
(PositionComponent? value)
Implementation
set trailing(PositionComponent? value) {
_trailing = value;
rebuild();
}