Schedule constructor
Schedule({
- Int64? min,
- Int64? max,
- Int64? timestamp,
Implementation
factory Schedule({
$fixnum.Int64? min,
$fixnum.Int64? max,
$fixnum.Int64? timestamp,
}) {
final $result = create();
if (min != null) {
$result.min = min;
}
if (max != null) {
$result.max = max;
}
if (timestamp != null) {
$result.timestamp = timestamp;
}
return $result;
}