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