asNullable method
Creates a copy of this spec with nullable set to true.
Implementation
@override
UnionSpec asNullable() => UnionSpec(
name: name,
discriminator: discriminator,
variants: variants,
description: description,
nullable: true,
examples: examples,
isDeprecated: isDeprecated,
);