fromValue static method

GuiTextBoxProperty fromValue(
  1. int value
)

Implementation

static GuiTextBoxProperty fromValue(int value) => switch (value) {
  16 => TEXT_READONLY,
  _ => throw ArgumentError('Unknown value for GuiTextBoxProperty: $value'),
};