isInformationHttpStatusCode property

bool isInformationHttpStatusCode

Checks if the integer represents an informational HTTP status code.

An informational HTTP status code ranges from 100 to 199. Returns true if the current integer is within this range.

Implementation

bool get isInformationHttpStatusCode => isBetween(100, 199);