at method
- int position
inherited
Implementation
T at(final int position) {
if (position > length - 1) {
throw RangeError.range(position, 0, length - 1, 'Index out of bounds');
} else {
final OperationResult resultString = objectMethod(
_pointerId,
_className,
'at',
args: position,
);
return _initializer(resultString['result'], _mapId);
}
}