getOwnedObjects method

Future<ListOwnedObjectsResponse> getOwnedObjects(
  1. String address, {
  2. int? limit,
  3. Uint8List? cursor,
  4. String? objectType,
})

Legacy alias of listOwnedObjects.

Implementation

Future<ListOwnedObjectsResponse> getOwnedObjects(
  String address, {
  int? limit,
  Uint8List? cursor,
  String? objectType,
}) =>
    listOwnedObjects(address,
        pageSize: limit, pageToken: cursor, objectType: objectType);