format method
Formats the given local date as text according to the rules of this pattern.
value
: The local date to format.
Returns: The local date formatted according to this pattern.
Implementation
@override
String format(LocalDate value) => _underlyingPattern.format(value);