listOwnedObjects method
Future<Page<ObjectData> >
listOwnedObjects(
- String owner, {
- String? objectType,
- String? cursor,
- int? limit,
- 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,
);
}