We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b0a10 commit 41a9e01Copy full SHA for 41a9e01
pkgs/fixnum/lib/src/int64_native.dart
@@ -357,6 +357,8 @@ class Int64 implements IntX {
357
358
String toStringUnsigned() => _toRadixStringUnsigned(_i, 10);
359
360
+ String toDebugString() => 'Int64[_i=$_i]';
361
+
362
static String _toRadixStringUnsigned(int value, int radix) {
363
if (radix < 2 || radix > 36) {
364
throw ArgumentError('toStringRadixUnsigned radix must be >= 2 and <= 36'
0 commit comments