bodyUsed property

bool bodyUsed

Stores a boolean value that declares whether the body has been used in a response yet.

MDN Reference

Implementation

bool get bodyUsed => switch (_storage[#bodyUsed]) {
      true => true,
      _ => false,
    };