saveOrThrow method

Future saveOrThrow({
  1. bool ignoreBatch = true,
})

Implementation

Future<dynamic> saveOrThrow({bool ignoreBatch = true}) {
  final msg =
      'saveOrThrow method requires a table which has an auto incremented primaryKey';
  throw UnimplementedError(msg);
}