create method

  1. @override
FutureOr<void> create(
  1. ReferralModel entity, {
  2. bool createOpLog = true,
  3. DataOperation dataOperation = DataOperation.create,
})
override

The create method creates a new entity.

Implementation

@override
FutureOr<void> create(
  ReferralModel entity, {
  bool createOpLog = true,
  DataOperation dataOperation = DataOperation.create,
}) async {
  return retryLocalCallOperation(() async {
    final referralCompanion = entity.companion;
    await sql.batch((batch) async {
      batch.insert(sql.referral, referralCompanion);
      await super.create(entity);
    });
  });
}