QueryResult constructor

const QueryResult({
  1. List<Map<String, dynamic>> rows = const [],
  2. int affectedRows = 0,
  3. dynamic lastInsertId,
})

Implementation

const QueryResult({
  this.rows = const [],
  this.affectedRows = 0,
  this.lastInsertId,
});