TimeParser constructor
TimeParser(
- String stringValue
Implementation
TimeParser(String stringValue) {
final removeAt = stringValue.replaceFirst('@', '');
value = FhirTime(removeAt.replaceFirst('T', ''));
}