fromString static method

AdifAIndex fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

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