isBlockhashValid method
Returns whether a blockhash
(base-58) is still valid or not.
Implementation
Future<bool> isBlockhashValid(
final String blockhash, {
final IsBlockhashValidConfig? config,
}) async =>
(await isBlockhashValidRaw(blockhash, config: config)).result!.value!;