toMillionDoubleString property

String get toMillionDoubleString

this getter return a string of million suffixed from num

Implementation

String get toMillionDoubleString =>
    '${(toDouble() / 1000000).toStringAsFixed(1)} M';