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