is3xxRedirection method

  1. @override
bool is3xxRedirection()
override

Whether this status code is in the Redirection class ({@code 3xx}). @see RFC 2616

Implementation

@override
bool is3xxRedirection() {
  return series == Series.redirection;
}