fromString static method

AdifQsoDate fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

static AdifQsoDate fromString(String str) {
  return AdifQsoDate(AdifDate.fromString(str));
}