schema property
Implementation
static final schema = {
r'$schema': 'http://json-schema.org/draft-06/schema#',
r'$id': '$id',
r'$comment':
'https://api.flutter.dev/flutter/material/MaterialStateProperty-class.html',
'title': 'MaterialStatePropertyTextStyle',
'type': 'object',
'properties': {
'disabled': SchemaHelper.objectSchema(TextStyleSchema.id),
'dragged': SchemaHelper.objectSchema(TextStyleSchema.id),
'empty': SchemaHelper.objectSchema(TextStyleSchema.id),
'error': SchemaHelper.objectSchema(TextStyleSchema.id),
'focused': SchemaHelper.objectSchema(TextStyleSchema.id),
'hovered': SchemaHelper.objectSchema(TextStyleSchema.id),
'pressed': SchemaHelper.objectSchema(TextStyleSchema.id),
'scrolledUnder': SchemaHelper.objectSchema(TextStyleSchema.id),
'selected': SchemaHelper.objectSchema(TextStyleSchema.id),
},
};