toUtcTiming method
Implementation
UtcTiming toUtcTiming() {
switch (this) {
case 'NONE':
return UtcTiming.none;
case 'HTTP-HEAD':
return UtcTiming.httpHead;
case 'HTTP-ISO':
return UtcTiming.httpIso;
}
throw Exception('$this is not known in enum UtcTiming');
}