parse method

dynamic parse(
  1. String textValue
)

Parses this property.

The default implementation does not support parsing and throws a FormatException

Implementation

dynamic parse(String textValue) {
  throw FormatException(
    'Implement parse to allow custom value in property: $definition',
  );
}