fromString static method

RADType? fromString(
  1. String value
)

Implementation

static RADType? fromString(String value) {
  Map<String, RADType?> map = {
    'Unknown': _byValue[0],
    'HTTP-GET': _byValue[1],
    'RNG': _byValue[2],
    'HTTP-POST': _byValue[3],
  };
  return map[value];
}