toFlutter method
Implementation
@override
TextAlignVertical toFlutter(AnyWidgetContext context) {
return map(
(value) => TextAlignVertical(y: value.y),
bottom: (_) => TextAlignVertical.bottom,
center: (_) => TextAlignVertical.center,
top: (_) => TextAlignVertical.top,
);
}