AppBaseScreen constructor

const AppBaseScreen({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. AppBar? appBar,
  5. EdgeInsets contentPadding = const EdgeInsets.symmetric(horizontal: 16),
})

Implementation

const AppBaseScreen(
    {super.key,
    required this.child,
    this.title,
    this.appBar,
    this.contentPadding = const EdgeInsets.symmetric(horizontal: 16)});