toHlsWebdavHttpTransferMode method
Implementation
HlsWebdavHttpTransferMode toHlsWebdavHttpTransferMode() {
switch (this) {
case 'CHUNKED':
return HlsWebdavHttpTransferMode.chunked;
case 'NON_CHUNKED':
return HlsWebdavHttpTransferMode.nonChunked;
}
throw Exception('$this is not known in enum HlsWebdavHttpTransferMode');
}