bigIntToBase64 function

String bigIntToBase64(
  1. BigInt input
)

Implementation

String bigIntToBase64(BigInt input) {
  final bytes = bigIntToBytes(input);
  return base64.encode(bytes);
}