isAvailable property

bool get isAvailable

Indicates if the response is available.

Implementation

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

Sets the availability status of the response.

Implementation

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