bodyAsBoolean method

bool bodyAsBoolean()

Converts the response data to a boolean.

Returns:

  • The response data as a boolean.

Implementation

bool bodyAsBoolean() {
  return bool.parse(data);
}