toMany method

Mail toMany(
  1. List<String> emails
)

Implementation

Mail toMany(List<String> emails) {
  _to.addAll(emails);
  return this;
}