sent property

bool? get sent

if sending operation not resulted sent is null if success, sent is true if operation failed, sent is false

Implementation

bool? get sent => _sent;
set sent (bool? value)

Implementation

set sent(bool? value) {
  _sent = value!;
  if (_waiter != null) {
    _waiter!.complete(value);
  }
}