parse static method

Sum parse(
  1. String val
)

Parses the provided val as a Sum.

Implementation

static Sum parse(String val) => Sum(double.parse(val));