BaseScaffold constructor

const BaseScaffold({
  1. required Widget body,
  2. String? title,
  3. List<Widget>? actions,
})

Implementation

const BaseScaffold({
  required this.body,
  this.title,
  this.actions,
});