sized method
T
sized({})
Adds UiSizedBox.
Implementation
T sized({
double? width,
double? height,
Size? size,
double? dimension,
Duration? duration,
Curve? curve,
VoidCallback? onEnd,
}) =>
addChild(UiSizedBox(
width: width ?? size?.width ?? dimension,
height: height ?? size?.height ?? dimension,
duration: duration,
curve: curve,
onEnd: onEnd,
));