Scalar constructor
Creates a Scalar UI configuration.
Implementation
factory Scalar({
String route = '/_docs',
String? theme,
String? layout,
String? title,
}) => Scalar._({
'type': 'scalar',
'route': route,
'theme': ?theme,
'layout': ?layout,
'title': ?title,
});