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/BottomSheetThemeData-class.html',
'type': 'object',
'title': 'BottomSheetThemeData',
'additionalProperties': false,
'properties': {
'backgroundColor': SchemaHelper.objectSchema(ColorSchema.id),
'clipBehavior': SchemaHelper.objectSchema(ClipSchema.id),
'constraints': SchemaHelper.objectSchema(BoxConstraintsSchema.id),
'elevation': SchemaHelper.numberSchema,
'modalBackgroundColor': SchemaHelper.objectSchema(ColorSchema.id),
'modalBarrierColor': SchemaHelper.objectSchema(ColorSchema.id),
'modalElevation': SchemaHelper.numberSchema,
'shape': SchemaHelper.objectSchema(ShapeBorderSchema.id),
'surfaceTintColor': SchemaHelper.objectSchema(ColorSchema.id),
},
};