SmtpResponse constructor
Creates a new response
Implementation
SmtpResponse(List<String> responseTexts) {
for (final responseText in responseTexts) {
if (responseText.isNotEmpty) {
responseLines.add(SmtpResponseLine.parse(responseText));
}
}
}