CommandContext_Schedule constructor

CommandContext_Schedule({
  1. Duration? delay,
})

Implementation

factory CommandContext_Schedule({
  $2.Duration? delay,
}) {
  final _result = create();
  if (delay != null) {
    _result.delay = delay;
  }
  return _result;
}