fromString static method

AdifCountry fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

static AdifCountry fromString(String str) {
  return AdifCountry(AdifString.fromString(str));
}