Schema.string constructor
Construct a schema for a String value.
Implementation
Schema.string({
String? description,
String? title,
bool? nullable,
String? format,
}) : this(
SchemaType.string,
description: description,
title: title,
nullable: nullable,
format: format,
);