BaseResponse constructor Null safety

BaseResponse(
  1. {String? error,
  2. String? messageId,
  3. String? rawStatus,
  4. required Map<String, dynamic> rawResponse}
)

Implementation

BaseResponse(
    {this.error, this.messageId, this.rawStatus, required this.rawResponse});