operator []= method Null safety
Implementation
void operator []=(int index, int value) {
_checkBounds(index);
switch (_absoluteIndex + index) {
case 0:
_struct._unique_ob_array_item_0 = value;
break;
default:
throw Exception('Invalid Array Helper generated.');
}
}