fromValue static method
Implementation
static MaterialMapIndex fromValue(int value) => values.firstWhere(
(e) => e.value == value,
orElse: () => throw ArgumentError('Unknown MaterialMapIndex value: $value'),
);
static MaterialMapIndex fromValue(int value) => values.firstWhere(
(e) => e.value == value,
orElse: () => throw ArgumentError('Unknown MaterialMapIndex value: $value'),
);