fromValue static method

MessageAction? fromValue(
  1. String value
)

Implementation

static MessageAction? fromValue(String value) {
  for (var r in values){
    if(r.value == value) {
      return r;
    }
  }
  return null;
}