schema top-level constant

CollectionSchema const schema

Implementation

const schema = CollectionSchema(
  tableName,
  properties: [
    PropertySchema("id",
        type: PropertyType.integer, primaryKey: true, nullable: false),
    PropertySchema("string", type: PropertyType.text),
  ],
);