fromString static method

AdifAltitude fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

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