Skip to content

Instantly share code, notes, and snippets.

@oshibka404
Created July 1, 2020 09:53
Show Gist options
  • Save oshibka404/7bf7aa276288a84c2685fc393524e613 to your computer and use it in GitHub Desktop.
Save oshibka404/7bf7aa276288a84c2685fc393524e613 to your computer and use it in GitHub Desktop.
Fractional part
import 'dart:math' show pow;
void main() {
var number = 4734.602654867;
var digits = 4;
print(getFraction(number, digits));
}
int getFraction(double number, int digits) => (number % 1 * pow(10, digits)).floor();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment