buildSizedBox method
Implementation
@protected
Widget buildSizedBox(BuildParameters params) {
return SizedBox(
key: properties.getKey(params.id),
width: tryParseDouble(params.props["width"]),
height: tryParseDouble(params.props["height"]),
);
}