hasError property
bool
get
hasError
Implementation
bool get hasError {
final foundError = responses.firstWhereOrNull( (response) => response.isError);
return foundError != null;
}
bool get hasError {
final foundError = responses.firstWhereOrNull( (response) => response.isError);
return foundError != null;
}