AppBottomArea constructor

const AppBottomArea({
  1. Key? key,
  2. required Widget child,
  3. Widget? bottom,
})

Implementation

const AppBottomArea({
  super.key,
  required Widget super.child,
  this.bottom,
});