SqliteSchemaRow constructor

const SqliteSchemaRow({
  1. required String type,
  2. required String name,
  3. required String tblName,
  4. required int rootPage,
  5. required String? sql,
})

Implementation

const SqliteSchemaRow({
  required this.type,
  required this.name,
  required this.tblName,
  required this.rootPage,
  required this.sql,
});