count property

  1. @override
int? count
override

Property getter and setter for count:

Implementation

@override
int? get count => _count;
  1. @override
void count=(int? count)
override

Implementation

@override
set count(int? count) {
  this._count = count;
  wrapped['count'] = jsonLiteral(count);
}