hireable property

bool? hireable

Implementation

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

Implementation

set hireable(bool? value) {
  rawData["hireable"] = value;
}