PersonResponse constructor

PersonResponse({
  1. int? httpStatusCode,
  2. Person? person,
  3. String? requestedResourceName,
  4. Status? status,
})

Implementation

PersonResponse({
  this.httpStatusCode,
  this.person,
  this.requestedResourceName,
  this.status,
});