asNullable method
Creates a copy of this spec with nullable set to true.
Implementation
@override
ObjectSpec asNullable() => ObjectSpec(
name: name,
properties: properties,
required: required,
additionalProperties: additionalProperties,
title: title,
description: description,
nullable: true,
examples: examples,
isDeprecated: isDeprecated,
);