Response constructor

Response({
  1. String? id,
  2. String? reason,
  3. dynamic parentId,
  4. int? type,
  5. int? action,
  6. bool? changeGeoLoc,
})

Implementation

Response({
  this.id,
  this.reason,
  this.parentId,
  this.type,
  this.action,
  this.changeGeoLoc,
});