format method

String? format(
  1. V value
)

Formats a value to string.

This is a method wrapper of formatter to avoid generic problems.

Implementation

String? format(V value) => formatter(value);