SqlQueryResult constructor

SqlQueryResult({
  1. required List<Map<String, dynamic>> data,
  2. Map<String, dynamic>? operation,
})

Implementation

SqlQueryResult({
  required this.data,
  this.operation,
});