readGuid method

Guid readGuid(
  1. int row,
  2. MetadataTable table,
  3. int column
)

Reads a Guid from the specified row and column of table.

Implementation

@pragma('vm:prefer-inline')
Guid readGuid(int row, MetadataTable table, int column) =>
    guidHeap[readUint(row, table, column) - 1];