format method

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

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

  • value: The instant to format.

Returns: The instant formatted according to this pattern.

Implementation

@override
String format(Instant value) => _pattern.format(value);