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