isValidBlurhash method
isValidBlurhash : Checks if the Blurhash is valid or not. Parameters : blurhash : A string representing the blurhash Returns : bool (true if it is a valid blurhash, else false)
Implementation
bool isValidBlurhash(
ffi.Pointer<ffi.Char> blurhash,
) {
return _isValidBlurhash(
blurhash,
);
}