byCode static method

Implementation

static ControlSequencesFunctions? byCode(String code) {
  for (final v in values) {
    if (v.code == code && v._description != null && v._type == _Type.normal) {
      return v;
    }
  }

  return null;
}