Substituted constructor

Substituted({
  1. CommandId? command,
  2. Substituted_Sequence? sequence,
})

Implementation

factory Substituted({
  $43.CommandId? command,
  Substituted_Sequence? sequence,
}) {
  final _result = create();
  if (command != null) {
    _result.command = command;
  }
  if (sequence != null) {
    _result.sequence = sequence;
  }
  return _result;
}