base16 1.0.0
base16: ^1.0.0 copied to clipboard
Simple hex (base16) encoder
example/example.dart
import 'dart:typed_data';
import 'package:base16/base16.dart';
final Uint8List _objectIDBytes = Uint8List.fromList(const [142, 71, 191, 93, 246, 100, 21, 15, 0, 205, 16, 37]);
void main() => print(hex(_objectIDBytes));