isAvailable property

bool isAvailable

Indicates if the response is available.

Implementation

bool get isAvailable => _available ?? false;
void isAvailable=(bool value)

Sets the availability status of the response.

Implementation

set isAvailable(bool value) => _available = value;