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/cupertino/CupertinoTextThemeData-class.html',
  'title': 'CupertinoTextThemeData',
  'type': 'object',
  'properties': {
    'actionTextStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'dateTimePickerTextStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'navActionTextStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'navLargeTitleTextStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'navTitleTextStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'pickerTextStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'primaryColor': SchemaHelper.objectSchema(ColorSchema.id),
    'tabLabelTextStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
    'textStyle': SchemaHelper.objectSchema(TextStyleSchema.id),
  },
};