IfMatchHeader.parse constructor

IfMatchHeader.parse(
  1. Iterable<String> values
)

Parses the If-Match header value.

Implementation

factory IfMatchHeader.parse(final Iterable<String> values) {
  return _parse(values);
}