fromString static method

UploadType fromString(
  1. String value
)

Implementation

static UploadType fromString(String value) {
  return UploadType.values.firstWhere(
    (e) => e.value == value,
    orElse: () => UploadType.file,
  );
}