QuerySort constructor

const QuerySort({
  1. required String field,
  2. bool descending = false,
})

Implementation

const QuerySort({
  required this.field,
  this.descending = false,
});