schema property
Implementation
static final schema = {
r'$schema': 'http://json-schema.org/draft-06/schema#',
r'$id': id,
r'$children': 1,
r'$comment':
'https://api.flutter.dev/flutter/widgets/AnimatedPositioned-class.html',
'type': 'object',
'title': 'AnimatedPositioned',
'additionalProperties': false,
'required': [
'duration',
],
'properties': {
'bottom': SchemaHelper.numberSchema,
'curve': SchemaHelper.stringSchema,
'duration': SchemaHelper.numberSchema,
'height': SchemaHelper.numberSchema,
'left': SchemaHelper.numberSchema,
'onEnd': SchemaHelper.stringSchema,
'right': SchemaHelper.numberSchema,
'top': SchemaHelper.numberSchema,
'width': SchemaHelper.numberSchema,
},
};