back method

VlDataset back()

Returns to the dataset this row belongs to, so rows chain one after another.

Returns The owning dataset, or a fresh empty one if this row was built without a dataset.

Implementation

VlDataset back() {
  if ( owner != null ) {
    return owner!;
  }
  return VlDataset.create();
}