copyIndividualParts method
Implementation
void copyIndividualParts(MimeMessage other) {
if (other._individualParts != null) {
for (final key in other._individualParts!.keys) {
setPart(key, other._individualParts![key]!);
}
}
}
void copyIndividualParts(MimeMessage other) {
if (other._individualParts != null) {
for (final key in other._individualParts!.keys) {
setPart(key, other._individualParts![key]!);
}
}
}