ResponsiveAppBar constructor

const ResponsiveAppBar({
  1. Key? key,
  2. Widget? leading,
  3. bool? centerTitle,
  4. String? title,
  5. Color? backgroundColor,
  6. Color? foregroundColor,
  7. List<Widget>? mobileActions = const [],
  8. List<Widget>? desktopActions = const [],
})

Implementation

const ResponsiveAppBar({
  super.key,
  this.leading,
  this.centerTitle,
  this.title,
  this.backgroundColor,
  this.foregroundColor,
  this.mobileActions = const [],
  this.desktopActions = const [],
});