CardsCompanion constructor

const CardsCompanion(
  1. {Value<int> id = const Value.absent(),
  2. Value<int> userId = const Value.absent(),
  3. Value<String> image = const Value.absent(),
  4. Value<String> name = const Value.absent(),
  5. Value<String> desc = const Value.absent(),
  6. Value<DateTime> updateAt = const Value.absent(),
  7. Value<DateTime> createAt = const Value.absent()}
)

Implementation

const CardsCompanion({
  this.id = const Value.absent(),
  this.userId = const Value.absent(),
  this.image = const Value.absent(),
  this.name = const Value.absent(),
  this.desc = const Value.absent(),
  this.updateAt = const Value.absent(),
  this.createAt = const Value.absent(),
});