SQLResult constructor

SQLResult({
  1. num execTime = 0,
  2. num affectedRows = 0,
  3. List columns = const [],
  4. List rows = const [],
})

Implementation

SQLResult({
  this.execTime = 0,
  this.affectedRows = 0,
  this.columns = const [],
  this.rows = const [],
});