QueryResponse constructor

const QueryResponse({
  1. Reply? reply,
  2. int? rejectCode,
  3. String? rejectMessage,
  4. required String status,
})

Implementation

const QueryResponse({
  this.reply,
  this.rejectCode,
  this.rejectMessage,
  required super.status,
});