parseValue abstract method

T? parseValue(
  1. String rawText
)

Parses the raw text input into the appropriate numerical type.

Must be implemented by subclasses to handle specific types like int or double.

Implementation

T? parseValue(String rawText);