bccMany method

Mail bccMany(
  1. List<String> emails
)

Implementation

Mail bccMany(List<String> emails) {
  _bcc.addAll(emails);
  return this;
}