copyWith method
Implementation
BadRequest$Response copyWith(
{List<String>? errorMessages, String? responseCode}) {
return BadRequest$Response(
errorMessages: errorMessages ?? this.errorMessages,
responseCode: responseCode ?? this.responseCode);
}