es6_math 1.2.1
es6_math: ^1.2.1 copied to clipboard
Provides math functions from ES6 (ECMAScript 2015) that are currently missing in dart:math.
import 'package:es6_math/es6_math.dart';
void main() {
print(imul(0xfffffffe, 5)); // -10
print(trunc(12.34)); // 12
}