from static method

YIMEnum_MessageType from(
  1. String? rawValue
)

Implementation

static YIMEnum_MessageType from(String? rawValue) => values.firstWhere((x) => x.rawValue == rawValue, orElse: () => UnKnown);