positionOf method

AppBarPosition? positionOf(
  1. int index
)

Returns attached the appbar position in this controller by given index.

Implementation

AppBarPosition? positionOf(int index) {
  return (index < _positions.length) ? _positions[index] : null;
}