ComponentsServicePaginationResponse constructor
ComponentsServicePaginationResponse({})
Implementation
factory ComponentsServicePaginationResponse({
$fixnum.Int64? count,
$fixnum.Int64? offset,
$fixnum.Int64? total,
$core.Iterable<Component>? payload,
}) {
final result = create();
if (count != null) result.count = count;
if (offset != null) result.offset = offset;
if (total != null) result.total = total;
if (payload != null) result.payload.addAll(payload);
return result;
}