format method

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

Formats the given local date/time as text according to the rules of this pattern.

  • value: The local date/time to format.

Returns: The local date/time formatted according to this pattern.

Implementation

@override
String format(LocalDateTime value) => _underlyingPattern.format(value);