listOwnedObjects method

Future<Page<ObjectData>> listOwnedObjects(
  1. String owner, {
  2. String? objectType,
  3. String? cursor,
  4. int? limit,
  5. ObjectIncludeOptions? include,
})

Implementation

Future<Page<ObjectData>> listOwnedObjects(
  String owner, {
  String? objectType,
  String? cursor,
  int? limit,
  ObjectIncludeOptions? include,
}) {
  return core.listOwnedObjects(
    owner,
    objectType: objectType,
    cursor: cursor,
    limit: limit,
    include: include,
  );
}