fromString static method

AdifComment fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

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