TimeParser constructor

TimeParser(
  1. String stringValue
)

Implementation

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