SanityQueryResponse constructor

SanityQueryResponse({
  1. required dynamic result,
  2. required PerformanceInfo info,
  3. List<String> syncTags = const [],
})

Creates a new Sanity query response with the given result and performance information.

Implementation

SanityQueryResponse({
  required this.result,
  required this.info,
  this.syncTags = const [],
});