create method
FutureOr<void>
create(
- AttendanceLogModel entity, {
- bool createOpLog = true,
- DataOperation dataOperation = DataOperation.create,
override
The create
method creates a new entity.
Implementation
@override
FutureOr<void> create(
AttendanceLogModel entity, {
bool createOpLog = true,
DataOperation dataOperation = DataOperation.create,
}) async {
return retryLocalCallOperation(() async {
final logCompanion = entity.companion;
await sql.batch((batch) async {
batch.insert(
sql.attendance,
logCompanion,
mode: InsertMode.insertOrReplace,
);
});
await super.create(entity, createOpLog: createOpLog);
});
}