RelationColumn constructor

RelationColumn({
  1. required String name,
  2. required String type,
  3. required bool isNullable,
  4. int? primaryKey,
})

Implementation

RelationColumn({
  required this.name,
  required this.type,
  required this.isNullable,
  this.primaryKey,
});