AppScaffold constructor

const AppScaffold({
  1. Key? key,
  2. required String title,
  3. Widget? body,
})

Implementation

const AppScaffold({
  super.key,
  required this.title,
  this.body,
});