Scaffold95 constructor

const Scaffold95({
  1. Key? key,
  2. required String title,
  3. required Widget body,
  4. Toolbar95? toolbar,
  5. void onClosePressed(
    1. BuildContext
    )?,
})

Implementation

const Scaffold95({
  super.key,
  required this.title,
  required this.body,
  this.toolbar,
  this.onClosePressed,
});