ContainerCustom constructor

const ContainerCustom({
  1. required Widget body,
  2. PreferredSizeWidget? appBar,
  3. Widget? bottomNavigationBar,
  4. Widget? floatingActionButton,
  5. Key? key,
})

Implementation

const ContainerCustom({
  required this.body,
  this.appBar,
  this.bottomNavigationBar,
  this.floatingActionButton,
  super.key,
});