AnimatedTheme constructor Null safety
Creates an animated theme.
By default, the theme transition uses a linear curve. The data and child arguments must not be null.
Implementation
const AnimatedTheme({
super.key,
required this.data,
super.curve,
super.duration = kThemeAnimationDuration,
super.onEnd,
required this.child,
}) : assert(child != null),
assert(data != null);