to_hex_string 1.0.1 to_hex_string: ^1.0.1 copied to clipboard
A single extension on int to convert it to a proper hex string, since the Dart team stubbornly refuses to add it.
example/to_hex_string_example.dart
import 'package:to_hex_string/to_hex_string.dart';
void main() {
print(1.toHexString());
}