AppBarColorAnimated constructor

  1. @Deprecated("")
const AppBarColorAnimated({
  1. Key? key,
  2. required ColorTween backgroundColor,
  3. required ColorTween color,
  4. Duration duration = const Duration(milliseconds: 100),
  5. required AppBarBuilder appBarBuilder,
  6. required Widget body,
  7. double appBarHeight = 100,
})

Implementation

@Deprecated("")
const AppBarColorAnimated({
  Key? key,
  required this.backgroundColor,
  required this.color,
  this.duration = const Duration(milliseconds: 100),
  required this.appBarBuilder,
  required this.body,
  this.appBarHeight = 100,
}) : super(key: key);