SupaTableJoinHere<A extends SupaTable> constructor

const SupaTableJoinHere<A extends SupaTable>(
  1. String prefix,
  2. String tableName,
  3. SupaJoinType joinType, {
  4. bool isNullable = true,
})

An annotation to let the generator know that the field is a join between two tables in the Supabase database.

Provide the type of the table to join as A.

Implementation

const SupaTableJoinHere(
  this.prefix,
  this.tableName,
  this.joinType, {
  this.isNullable = true,
});