is_blocked property

bool? get is_blocked

Implementation

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

Implementation

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