fromString static method

AdifTimeOn fromString(
  1. String str
)
override

The method to parse the value from a string.

Implementation

static AdifTimeOn fromString(String str) {
  return AdifTimeOn(AdifTime.fromString(str));
}