justify method

T justify(
  1. String value
)

Set main-axis alignment - accepts String ('start', 'end', 'center', 'between', 'around', 'evenly')

Implementation

T justify(String value) {
  return copyWith(flyStyle.copyWith(justify: value));
}