Price.fromInt constructor

Price.fromInt(
  1. int value
)

Implementation

Price.fromInt(int value) {
  price = Decimal.fromInt(value);
}