SupaColumnHere<T> constructor

const SupaColumnHere<T>({
  1. bool hasDefault = false,
})

An annotation to let the generator know that the field is a column of a Supabase table.

Provide T to specify the type of the column. (e.g. @SupaColumnHere<int>)

Implementation

const SupaColumnHere({this.hasDefault = false});