isRedirectionCode property

bool get isRedirectionCode

Checks if the status code represents a redirection (3xx)

Implementation

bool get isRedirectionCode => this != null && this! >= 300 && this! < 400;