toAZMode method
Implementation
AZMode toAZMode() {
switch (this) {
case 'single-az':
return AZMode.singleAz;
case 'cross-az':
return AZMode.crossAz;
}
throw Exception('$this is not known in enum AZMode');
}
AZMode toAZMode() {
switch (this) {
case 'single-az':
return AZMode.singleAz;
case 'cross-az':
return AZMode.crossAz;
}
throw Exception('$this is not known in enum AZMode');
}