0

Is there a way to get this in dart (java example):

Math.min(Long.MAX_VALUE, Long.MIN_VALUE);
julemand101
  • 28,470
  • 5
  • 52
  • 48
  • 1
    Does this answer your question? [Is there a constant for max/min int/double value in dart?](https://stackoverflow.com/questions/50429660/is-there-a-constant-for-max-min-int-double-value-in-dart) – julemand101 Jun 20 '21 at 21:26

1 Answers1

0

In Dart, there is no direct representation of the Long data type. Both the Short and Long data types in Java are covered in the Dart int data type. See this question for more clarity.

Benedict
  • 441
  • 4
  • 14