DbColumn constructor

const DbColumn({
  1. required String name,
  2. required Type type,
  3. bool required = false,
})

Implementation

const DbColumn(
    {required this.name, required this.type, this.required = false});