toWidget method
Implementation
@override
Align toWidget(AnyWidgetContext context) {
return Align(
key: key?.toFlutter(context),
alignment: alignment?.toFlutter(context) ?? Alignment.center,
widthFactor: widthFactor,
heightFactor: heightFactor,
child: child?.toWidget(context),
);
}