RequestResponse constructor

RequestResponse(
  1. {required String id,
  2. String? icon,
  3. String? name,
  4. String? username,
  5. String? action,
  6. String? type}
)

Implementation

RequestResponse({
  required this.id,
  this.icon,
  this.name,
  this.username,
  this.action,
  this.type,
});