parseRaw function

String parseRaw(
  1. CalendarProperty property
)

Parses a CalendarProperty into a raw string representation. This is used for properties that do not require any special parsing.

Implementation

String parseRaw(CalendarProperty property) {
  // return the raw value as a string
  return property.value;
}