toLoaContentType method

LoaContentType toLoaContentType()

Implementation

LoaContentType toLoaContentType() {
  switch (this) {
    case 'application/pdf':
      return LoaContentType.applicationPdf;
  }
  throw Exception('$this is not known in enum LoaContentType');
}