value method

String? value(
  1. String name
)

Returns the value for the header named name.

If there is no header with the provided name, null will be returned.

Use this method to index other headers available in the original MimeMultipart.

Implementation

String? value(String name) {
  return _mimeMultipart.headers[name];
}