open_period property
num?
get
open_period
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
num? get open_period {
try {
if (rawData["open_period"] is num == false) {
return null;
}
return rawData["open_period"] as num;
} catch (e) {
return null;
}
}
set
open_period
(num? value)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set open_period(num? value) {
rawData["open_period"] = value;
}