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