Property constructor

Property({
  1. String? name,
  2. int? ordinal,
  3. bool primaryKey = false,
  4. required String columnName,
})

Implementation

Property( { this.name, this.ordinal, this.primaryKey=false, required this.columnName } );