RuntimeSqliteColumnDefinition constructor

const RuntimeSqliteColumnDefinition({
  1. bool association = false,
  2. required String columnName,
  3. bool iterable = false,
  4. required Type type,
})

Implementation

const RuntimeSqliteColumnDefinition({
  this.association = false,
  required this.columnName,
  this.iterable = false,
  required this.type,
});