isClosed property

bool? isClosed

brainly scraper

Implementation

bool? get isClosed {
  try {
    if (rawData["isClosed"] is bool == false) {
      return null;
    }
    return rawData["isClosed"] as bool;
  } catch (e) {
    return null;
  }
}