schema property

Map<String, Object> schema
final

Implementation

static final schema = {
  r'$schema': 'http://json-schema.org/draft-06/schema#',
  r'$id': '$id',
  r'$comment':
      'https://api.flutter.dev/flutter/material/TabBarTheme-class.html',
  'title': 'TabBarTheme',
  'type': 'object',
  'properties': {
    'indicatorSize': SchemaHelper.objectSchema(TabBarIndicatorSizeSchema.id),
    'labelPadding': SchemaHelper.objectSchema(EdgeInsetsGeometrySchema.id),
    'labelColor': SchemaHelper.objectSchema(ColorSchema.id),
    'labelStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'unselectedLabelColor': SchemaHelper.objectSchema(ColorSchema.id),
    'unselectedLabelStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
  },
};