WorkflowsRulesServicePaginationResponse constructor
WorkflowsRulesServicePaginationResponse({
- Int64? count,
- Int64? offset,
- Int64? total,
- Iterable<
WorkflowRule> ? payload,
Implementation
factory WorkflowsRulesServicePaginationResponse({
$fixnum.Int64? count,
$fixnum.Int64? offset,
$fixnum.Int64? total,
$core.Iterable<WorkflowRule>? 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;
}