SqliteException constructor

SqliteException({
  1. required int extendedResultCode,
  2. required String message,
  3. String? explanation,
  4. String? causingStatement,
  5. List<Object?>? parametersToStatement,
  6. String? operation,
  7. int? offset,
})

Implementation

SqliteException({
  required this.extendedResultCode,
  required this.message,
  this.explanation,
  this.causingStatement,
  this.parametersToStatement,
  this.operation,
  this.offset,
});