format method

  1. @override
String format(
  1. LocalDate value
)
override

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);