upsertAll method

Future<BoolCommitResult> upsertAll(
  1. covariant List objList
)

inserts or replaces the sent List<

Implementation

Future<BoolCommitResult> upsertAll(covariant List<dynamic> objList) {
  final msg = 'upsertAll method can be implemented in tables not view objects';
  throw UnimplementedError(msg);
}