wire property

String get wire

Implementation

String get wire {
  switch (this) {
    case CellRegion.usEast:
      return 'us-east';
    case CellRegion.usWest:
      return 'us-west';
    case CellRegion.euCentral:
      return 'eu-central';
    case CellRegion.apSouth:
      return 'ap-south';
    case CellRegion.apSoutheast:
      return 'ap-southeast';
  }
}