static String bigIntToBase64(BigInt value) { final bytes = utf8.encode(value.toString()); return base64.encode(bytes); }