align method

T align(
  1. dynamic value
)

Set text alignment - accepts String ('left', 'right', 'center', 'justify', 'start', 'end') or TextAlign

Implementation

T align(dynamic value) {
  return copyWith(flyStyle.copyWith(textAlign: value));
}