ServerResponse constructor

ServerResponse({
  1. required dynamic result,
  2. required int ms,
  3. required String query,
  4. List<String> syncTags = const [],
})

Creates a new server response with the given result, time and query.

Implementation

ServerResponse({
  required this.result,
  required this.ms,
  required this.query,
  this.syncTags = const [],
});