CommandContext_Schedule constructor Null safety

CommandContext_Schedule(
  1. {Duration? delay}
)

Implementation

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