fromString static method

AdifSwl fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

static AdifSwl fromString(String str) {
  return AdifSwl(AdifBoolean.fromString(str));
}