toAutoMillionAndThousandInt property

String get toAutoMillionAndThousandInt

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 in int form

Implementation

String get toAutoMillionAndThousandInt =>
    _calculateThousandsOrMillionsInt(this);