CircularAnimatedTheme constructor
const
CircularAnimatedTheme({})
Creates an animated theme.
By default, the theme transition uses a linear curve. The data
and
child
arguments must not be null.
Implementation
const CircularAnimatedTheme({
Key? key,
required this.data,
required this.end,
this.isMaterialAppTheme = false,
Curve curve = Curves.linear,
this.duration = kThemeAnimationDuration,
VoidCallback? onEnd,
required this.child,
}) : super(key: key);