fromValue static method
Implementation
static TruncateOptions fromValue(int value) {
return TruncateOptions.values
.firstWhere((element) => element.value == value, orElse: () => none);
}
static TruncateOptions fromValue(int value) {
return TruncateOptions.values
.firstWhere((element) => element.value == value, orElse: () => none);
}