SqfliteDatabaseException constructor

SqfliteDatabaseException(
  1. String? message,
  2. Object? result, {
  3. int? resultCode,
  4. bool? transactionClosed,
})

ctor with a message and some data

Implementation

SqfliteDatabaseException(super.message, this.result,
    {int? resultCode, bool? transactionClosed}) {
  _resultCode = resultCode;
  _transactionClosed = transactionClosed;
}