BookCompanion constructor
const
BookCompanion({
- Value<
int> id = const Value.absent(), - Value<
String> code = const Value.absent(), - Value<
String> title = const Value.absent(), - Value<
int> seqNum = const Value.absent(), - Value<
bool> published = const Value.absent(), - Value<
bool> locked = const Value.absent(), - Value<
String?> imagePath = const Value.absent(), - Value<
String?> description = const Value.absent(), - Value<
String?> note = const Value.absent(),
Implementation
const BookCompanion({
this.id = const Value.absent(),
this.code = const Value.absent(),
this.title = const Value.absent(),
this.seqNum = const Value.absent(),
this.published = const Value.absent(),
this.locked = const Value.absent(),
this.imagePath = const Value.absent(),
this.description = const Value.absent(),
this.note = const Value.absent(),
});