outputText method
void
outputText(
- StringBuffer buffer, {
- UncertaintyFormat uncertFormat = UncertaintyFormat.none,
- bool symbols = true,
- NumberFormat? numberFormat,
override
Appends a String representation of this Quantity to the buffer
using the preferred units and number format. If no preferred units have
been specified, then MKS units are used. Uncertainty in the value of the
Quantity is optionally shown as a plus/minus value in the same units.
Implementation
@override
void outputText(StringBuffer buffer,
{UncertaintyFormat uncertFormat = UncertaintyFormat.none,
bool symbols = true,
NumberFormat? numberFormat}) =>
snapshot.outputText(buffer,
uncertFormat: uncertFormat,
symbols: symbols,
numberFormat: numberFormat);