How does Dart handle numbers and operations while targetting so many platforms? — Table of Contents Hierarchy Platforms Operators Final Thoughts Dart targets multiple platforms, and numbers in dart behave differently depending on the underlying platform. Hierarchy Numbers, in programming, are usually divided into two types: integer values and fractional values. In dart, int represents integers, and double represents fractional values.