fetchStorage static method
Returns the multisig storage from the chain.
If the storage does not exist, it will return null.
Implementation
static Future<Uint8List?> fetchStorage(
Provider provider, Uint8List storageKey) async {
return await StateApi(provider).getStorage(storageKey);
}