Price.parse constructor

Price.parse(
  1. String value
)

Implementation

Price.parse(String value) {
  price = Decimal.parse(value);
}