Schedule constructor

Schedule({
  1. Int64? min,
  2. Int64? max,
  3. 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;
}