buildAnimated method
Widget
buildAnimated(
- AnimationController? controller,
- Widget child,
- AntdAnimated<
WidgetType, StateType> ? animated
Implementation
@protected
Widget buildAnimated(AnimationController? controller, Widget child,
AntdAnimated<WidgetType, StateType>? animated) {
if (controller == null || animated == null) {
return child;
}
return animated.build(controller, child, animatorContext);
}