idOf method

String idOf(
  1. int index
)

Implementation

String idOf(int index) {
  if (index < _list.length) {
    return _list[index].object.objectId ?? 'NotFound';
  }
  return 'NotFound';
}