ComponentsServicePaginationReq constructor
ComponentsServicePaginationReq({
- BOOL_FILTER? isActive,
- Int64? count,
- Int64? offset,
- SORT_ORDER? sortOrder,
- INVENTORY_SORT_KEY? sortKey,
- INVENTORY_LIFECYCLE? status,
Implementation
factory ComponentsServicePaginationReq({
$1.BOOL_FILTER? isActive,
$fixnum.Int64? count,
$fixnum.Int64? offset,
$1.SORT_ORDER? sortOrder,
$1.INVENTORY_SORT_KEY? sortKey,
$1.INVENTORY_LIFECYCLE? status,
}) {
final result = create();
if (isActive != null) result.isActive = isActive;
if (count != null) result.count = count;
if (offset != null) result.offset = offset;
if (sortOrder != null) result.sortOrder = sortOrder;
if (sortKey != null) result.sortKey = sortKey;
if (status != null) result.status = status;
return result;
}