format method

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

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

  • value: The local time to format.

Returns: The local time formatted according to this pattern.

Implementation

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