asNullable method
Creates a copy of this spec with nullable set to true.
Implementation
@override
MapSpec asNullable() => MapSpec(
keyType: keyType,
valueType: valueType,
description: description,
nullable: true,
examples: examples,
isDeprecated: isDeprecated,
);