BookCompanion.insert constructor
BookCompanion.insert({})
Implementation
BookCompanion.insert({
this.id = const Value.absent(),
required String code,
required String title,
required int seqNum,
required bool published,
required bool locked,
this.imagePath = const Value.absent(),
this.description = const Value.absent(),
this.note = const Value.absent(),
}) : code = Value(code),
title = Value(title),
seqNum = Value(seqNum),
published = Value(published),
locked = Value(locked);