buildRotatedBox method
Implementation
@protected
Widget buildRotatedBox(BuildParameters params) {
return RotatedBox(
key: properties.getKey(params.id),
quarterTurns: parseInt(params.props["quarterTurns"]),
child: builder.tryBuildWidget(params.context, params.widgets["child"],
params.state, params.parentContext),
);
}