generateMarkerContent method

String generateMarkerContent(
  1. int count
)

Generates a marker using the algorithm of this CounterStyle, applying padding and negative signs as necessary. Also applies the given (or default) prefix and suffix.

Implementation

String generateMarkerContent(int count) {
  return '$_prefix${generateCounterContent(count)}$_suffix';
}