toAZMode method

AZMode toAZMode()

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');
}