fromValue static method

InboxFeed fromValue(
  1. String value
)

Implementation

static InboxFeed fromValue(String value) {
  return InboxFeed.values.firstWhere((e) => e.value == value,
      orElse: () => throw ArgumentError('Invalid value: $value'));
}