callViewMethod method
Implementation
Future<BlockchainResponse> callViewMethod({
required String contractId,
required String method,
Map<String, dynamic> args = const {},
}) async {
final res = await nearRpcClient.callViewMethod(
contractId: contractId,
method: method,
args: args,
);
return res;
}