ServerResponse constructor

ServerResponse({
  1. required dynamic result,
  2. required int ms,
  3. required String query,
})

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

Implementation

ServerResponse({
  required this.result,
  required this.ms,
  required this.query,
});