hireable property

bool? get hireable

Implementation

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

Implementation

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