Decimal.fromJson constructor

Decimal.fromJson(
  1. String value
)

Create a new Decimal from its String representation.

Implementation

factory Decimal.fromJson(String value) => Decimal.parse(value);