fromString static method

AdifStx fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

static AdifStx fromString(String str) {
  return AdifStx(AdifInteger.fromString(str));
}