fromValue static method

UIMaterialSymbolVariant fromValue(
  1. int value
)

Implementation

static UIMaterialSymbolVariant fromValue(int value) =>
    UIMaterialSymbolVariant.values.firstWhere((e) => e.value == value, orElse: () => UIMaterialSymbolVariant.values.first);