getData method

Future<List<EtebaseItem>> getData()

List of item revisions included in the response

@param this_ the object handle @paramout data the array to store the items in

Implementation

Future<List<EtebaseItem>> getData() async {
  final addressList = await _isolate.invoke<List<int>>(
    #etebase_item_revisions_list_response_get_data,
    <dynamic>[_pointer.address],
  );
  return addressList
      .map((a) => EtebaseItem._(
            _isolate,
            _i4.Pointer.fromAddress(a),
            this,
          ))
      .toList();
}