toFlutter method
Implementation
@override
MainAxisAlignment toFlutter(AnyWidgetContext config) {
return map(
start: (_) => MainAxisAlignment.start,
end: (_) => MainAxisAlignment.end,
center: (_) => MainAxisAlignment.center,
spaceBetween: (_) => MainAxisAlignment.spaceBetween,
spaceAround: (_) => MainAxisAlignment.spaceAround,
spaceEvenly: (_) => MainAxisAlignment.spaceEvenly,
);
}