schema property

Map<String, Object> schema
final

Implementation

static final schema = {
  r'$schema': 'http://json-schema.org/draft-07/schema#',
  r'$id': id,
  r'$comment':
      'https://api.flutter.dev/flutter/material/SearchViewThemeData-class.html',
  'title': 'SearchViewThemeData',
  'additionalProperties': false,
  'properties': {
    'backgroundColor': SchemaHelper.objectSchema(ColorSchema.id),
    'constraints': SchemaHelper.objectSchema(BoxConstraintsSchema.id),
    'dividerColor': SchemaHelper.objectSchema(ColorSchema.id),
    'elevation': SchemaHelper.numberSchema,
    'headerHintStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'headerTextStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'shape': SchemaHelper.objectSchema(OutlinedBorderSchema.id),
    'side': SchemaHelper.objectSchema(BorderSideSchema.id),
    'surfaceTintColor': SchemaHelper.objectSchema(ColorSchema.id),
  }
};