QueryResult constructor

const QueryResult({
  1. List<String> columns = const [],
  2. List<List<Object?>> rows = const [],
  3. int affected = 0,
  4. String? message,
})

Implementation

const QueryResult({
  this.columns = const [],
  this.rows = const [],
  this.affected = 0,
  this.message,
});