SwappableFit<T> constructor

const SwappableFit<T>({
  1. Key? key,
  2. required Widget itemBuilder(
    1. T data
    ),
  3. List<T> items = const [],
  4. T? center,
  5. bool fit = false,
})

Implementation

const SwappableFit({
  super.key,
  required this.itemBuilder,
  this.items = const [],
  this.center,
  this.fit = false,
});