SecurityScheme.http constructor
Creates an HTTP security scheme (e.g., Basic, Bearer).
Implementation
const SecurityScheme.http({
required String scheme,
String? bearerFormat,
String? description,
}) : this._(
type: 'http',
scheme: scheme,
bearerFormat: bearerFormat,
description: description,
);