fromString static method

AdifAge fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

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