seconds property

double? get seconds

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

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

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set seconds(double? value) {
  rawData["seconds"] = value;
}