AnimatedBackground constructor

AnimatedBackground({
  1. Key? key,
  2. required Widget child,
  3. required TickerProvider vsync,
  4. required Behaviour behaviour,
})

Creates a new animated background with the provided arguments

Implementation

AnimatedBackground({
  Key? key,
  required this.child,
  required this.vsync,
  required this.behaviour,
}) : super(key: key);