fromString static method

AdifCall fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

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