fromString static method

AdifAntEl fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

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