length property
int?
get
length
The maximum number of bytes to receive (required only by input transfers).
Implementation
int? get length => _wrapped.length;
set
length
(int? v)
Implementation
set length(int? v) {
_wrapped.length = v;
}