How to set Integer field to optional in Flask-Marshmallow?

Solution
print(ProductSchema().fields['sold_price'].required)
print(ProductSchema().fields['sold_price'].allow_none)