如何在 flutter 中将 int 转换为 Uint32
How to convert int into Uint32 in flutter
有没有办法将整数转换成 Uint32 格式。
int x = 94;
Uint32 y = x.toUint32(); ///Pseudocode
Dart 没有无符号整数。
但是您可以使用 BigInt
并在每次操作后使用 toUnsigned(32)。
有没有办法将整数转换成 Uint32 格式。
int x = 94;
Uint32 y = x.toUint32(); ///Pseudocode
Dart 没有无符号整数。
但是您可以使用 BigInt
并在每次操作后使用 toUnsigned(32)。