SqliteException constructor

SqliteException(
  1. int extendedResultCode,
  2. String message, [
  3. String? explanation,
  4. String? causingStatement,
  5. List<Object?>? parametersToStatement,
  6. String? operation,
])

Implementation

SqliteException(
  this.extendedResultCode,
  this.message,
  // todo: migrate to named parameters in next breaking release
  [
  this.explanation,
  this.causingStatement,
  this.parametersToStatement,
  this.operation,
]);