getByValue static method

TextHorizontalAlignment getByValue(
  1. int value
)

Implementation

static TextHorizontalAlignment getByValue(int value) {
  return TextHorizontalAlignment.values.firstWhere((x) => x.rawValue == value);
}