fromString static method

AdifFreq fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

static AdifFreq fromString(String str) {
  return AdifFreq(AdifNumber.fromString(str));
}