EdumeetAppBar constructor

const EdumeetAppBar({
  1. @required Widget? title,
  2. @required List<Widget>? actions,
  3. @required Widget? leading,
  4. @required bool? centerTitle,
  5. Color? color,
  6. Gradient? gradient,
  7. bool? display,
})

Implementation

const EdumeetAppBar({
  @required this.title,
  @required this.actions,
  @required this.leading,
  @required this.centerTitle,
  this.color,
  this.gradient,
  this.display,
});