fromValue static method
Implementation
static LoadingStatusInternalTransferE fromValue(int value) {
return LoadingStatusInternalTransferE.values.firstWhere(
(e) => e.value == value,
orElse: () => throw ArgumentError('Invalid LoadingStatusE value: $value'),
);
}