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