rawUpdate method

  1. @override
Future<int> rawUpdate(
  1. String sql, [
  2. List<Object?>? arguments
])
override

Implementation

@override
Future<int> rawUpdate(String sql, [List<Object?>? arguments]) async {
  try {
    return await database!.rawUpdate(sql, arguments);
  } catch (e) {
    throw DatabaseBridgeException(error: e);
  }
}