bouncingAlignment property

Alignment get bouncingAlignment

Implementation

Alignment get bouncingAlignment => _bouncingAlignment!;
set bouncingAlignment (Alignment value)

Implementation

set bouncingAlignment(Alignment value) {
  if (_bouncingAlignment != value) {
    _bouncingAlignment = value;
    markNeedsLayout();
  }
}