CommandDispatched constructor Null safety

CommandDispatched(
  1. {CommandId? id}
)

Implementation

factory CommandDispatched({
  $43.CommandId? id,
}) {
  final _result = create();
  if (id != null) {
    _result.id = id;
  }
  return _result;
}