Cursor constructor

Cursor({
  1. bool? before,
  2. List<Value>? values,
})

Implementation

Cursor({
  this.before,
  this.values,
});