decodeSectionType method

SectionType decodeSectionType(
  1. String? value
)

Implementation

SectionType decodeSectionType(String? value) => _$SectionTypeTypeMap.entries
    .singleWhere((element) => element.value == value)
    .key;