getTableSchemeImpl abstract method

FutureOr<TableScheme?> getTableSchemeImpl(
  1. String table,
  2. TableRelationshipReference? relationship, {
  3. Object? contextID,
})

Implementation that returns a TableScheme for table.

  • contextID should be Expando compatible. It informs that other calls to getTableSchemeImpl are in the same context and could have shared internal caches for the same contextID instance.

Implementation

FutureOr<TableScheme?> getTableSchemeImpl(
    String table, TableRelationshipReference? relationship,
    {Object? contextID});