toAutoMillionAndThousandDouble property

String get toAutoMillionAndThousandDouble

this getter return a string of normal number or thousand or million suffixed string based on whether the given num is bellow thousand or a thousand or above or a million or above

Implementation

String get toAutoMillionAndThousandDouble =>
    _calculateThousandsOrMillions(this);