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;
}