LiveQueryResponse constructor

LiveQueryResponse({
  1. required LiveQueryAction action,
  2. Object? result,
  3. LiveQueryClosureReason? detail,
})

Implementation

LiveQueryResponse({
  required this.action,
  this.result,
  this.detail,
});