bigIntToBase64 static method

String bigIntToBase64(
  1. BigInt value
)

Implementation

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