toThousandDoubleString property

String get toThousandDoubleString

this getter return a string of thousands suffixed string from num

Implementation

String get toThousandDoubleString =>
    '${(toDouble() / 1000).toStringAsFixed(1)} K';