BackgroundBody constructor

BackgroundBody({
  1. required PageController controller,
  2. required Function function,
  3. required int totalPage,
  4. required List<Widget> bodies,
})

Implementation

BackgroundBody({
  required this.controller,
  required this.function,
  required this.totalPage,
  required this.bodies,
});