DDSContainer constructor

DDSContainer({
  1. Key? key,
  2. Widget? topBar,
  3. Widget? child,
  4. Widget? bottomBar,
})

Implementation

DDSContainer({
  Key? key,
  this.topBar,
  this.child,
  this.bottomBar,
}) : super(key: key);