getLoadedChildObjects method

Future<LoadedChildObjects> getLoadedChildObjects(
  1. String txDigest
)

Implementation

Future<LoadedChildObjects> getLoadedChildObjects(String txDigest) async {
  final result = await client.request('sui_getLoadedChildObjects', [txDigest]);
  return LoadedChildObjects.fromJson(result);
}