ULONG_MAX property

int get ULONG_MAX

Maximum value for an unsigned long int (Mapping to Dart's max safe integer since Dart doesn't have unsigned 64-bit) Using maximum 64-bit signed as approximation. NOTE: A true unsigned 64-bit int max is 18446744073709551615, but Dart's int cannot hold it safely without third-party types.

Implementation

int get ULONG_MAX => 9223372036854775807;