TransparentScaffold constructor

const TransparentScaffold({
  1. Key? key,
  2. required String title,
  3. bool centerTitle = true,
  4. Widget? leading,
  5. List<Widget>? actions,
  6. Widget? body,
})

Implementation

const TransparentScaffold(
    {Key? key,
    required this.title,
    this.centerTitle = true,
    this.leading,
    this.actions,
    this.body})
    : super(key: key);