MessageResponse constructor

MessageResponse({
  1. MessageSingleResponse? message,
  2. bool? error,
  3. bool? isUser,
  4. int? receptionDate,
  5. String? method,
  6. String? sender,
  7. required String type,
})

Implementation

MessageResponse(
    {this.message,
    this.error,
    this.isUser,
    this.receptionDate,
    this.method,
    this.sender,
    required this.type});