appendFormat method

  1. @override
StringBuffer appendFormat(
  1. Instant value,
  2. StringBuffer builder
)
override

Formats the given value as text according to the rules of this pattern, appending to the given StringBuilder.

  • value: The value to format.
  • builder: The StringBuffer to append to.

Returns: The builder passed in as builder.

Implementation

@override
StringBuffer appendFormat(Instant value, StringBuffer builder) => _pattern.appendFormat(value, builder);