RejectRequestVPResponseMessage constructor

RejectRequestVPResponseMessage({
  1. required String id,
  2. required String from,
  3. required List<String> to,
  4. List<String>? ack,
  5. int? createdTime,
  6. int? expiresTime,
})

Implementation

RejectRequestVPResponseMessage({
  required this.id,
  required this.from,
  required this.to,
  this.ack,
  this.createdTime,
  this.expiresTime,
}) {
  id = id;
  from = from;
  to = to;
  createdTime = createdTime;
  expiresTime = expiresTime;
  ack = ack;
}