count property
- @TagNumber.new(2)
@mandatory
@description Number of records to return per page.
@example 50
@regex ^0-9*$
@format Must be a strictly positive integer (1 or greater).
Implementation
@$pb.TagNumber(2)
$fixnum.Int64 get count => $_getI64(1);
- @TagNumber.new(2)
Implementation
@$pb.TagNumber(2)
set count($fixnum.Int64 value) => $_setInt64(1, value);