with_subject method

Future<MailQuery> with_subject(
  1. String subject
)

Implementation

Future<MailQuery> with_subject(
  String subject,
) async {
  var MailQuery = await this;
  return MailQuery.with_subject(
    subject,
  );
}