operator [] method Null safety

int operator [] (
  1. int index
)

Implementation

int operator [](int index) {
  _checkBounds(index);
  switch (_absoluteIndex + index) {
    case 0:
      return _struct._unique__unused2_item_0;
    case 1:
      return _struct._unique__unused2_item_1;
    case 2:
      return _struct._unique__unused2_item_2;
    case 3:
      return _struct._unique__unused2_item_3;
    case 4:
      return _struct._unique__unused2_item_4;
    case 5:
      return _struct._unique__unused2_item_5;
    case 6:
      return _struct._unique__unused2_item_6;
    case 7:
      return _struct._unique__unused2_item_7;
    case 8:
      return _struct._unique__unused2_item_8;
    case 9:
      return _struct._unique__unused2_item_9;
    case 10:
      return _struct._unique__unused2_item_10;
    case 11:
      return _struct._unique__unused2_item_11;
    case 12:
      return _struct._unique__unused2_item_12;
    case 13:
      return _struct._unique__unused2_item_13;
    case 14:
      return _struct._unique__unused2_item_14;
    case 15:
      return _struct._unique__unused2_item_15;
    case 16:
      return _struct._unique__unused2_item_16;
    case 17:
      return _struct._unique__unused2_item_17;
    case 18:
      return _struct._unique__unused2_item_18;
    case 19:
      return _struct._unique__unused2_item_19;
    default:
      throw Exception('Invalid Array Helper generated.');
  }
}