CommandId constructor Null safety

CommandId(
  1. {String? uuid}
)

Implementation

factory CommandId({
  $core.String? uuid,
}) {
  final _result = create();
  if (uuid != null) {
    _result.uuid = uuid;
  }
  return _result;
}