toWidget method
Implementation
@override
OverflowBox toWidget(AnyWidgetContext context) {
return OverflowBox(
key: key?.toFlutter(context),
alignment: alignment?.toFlutter(context) ?? Alignment.center,
minWidth: minWidth,
maxWidth: maxWidth,
minHeight: minHeight,
maxHeight: maxHeight,
child: child?.toWidget(context),
);
}