QueryResponseWithStatus constructor

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

Implementation

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