copyWith method
Implementation
ConversationHistoryErrorCommonModel copyWith({int? code, dynamic reason}) {
return ConversationHistoryErrorCommonModel(
code: code ?? this.code, reason: reason ?? this.reason);
}
ConversationHistoryErrorCommonModel copyWith({int? code, dynamic reason}) {
return ConversationHistoryErrorCommonModel(
code: code ?? this.code, reason: reason ?? this.reason);
}