fromValue static method

MutedConversationType? fromValue(
  1. String value
)

Implementation

static MutedConversationType? fromValue(String value) {
  for (final option in MutedConversationType.values) {
    if (option.type == value) {
      return option;
    }
  }
  return null;
}