ResponsiveAppBar constructor

const ResponsiveAppBar({
  1. Key? key,
  2. String title = '',
  3. List<Widget> actions = const [],
  4. bool automaticallyImplyLeading = false,
  5. bool centerTitle = false,
})

Implementation

const ResponsiveAppBar({
  super.key,
  this.title = '',
  this.actions = const [],
  this.automaticallyImplyLeading = false,
  this.centerTitle = false,
});