receiveTimeout property
Implementation
Duration? get receiveTimeout => _receiveTimeout;Implementation
set receiveTimeout(Duration? value) {
  if (value != null && value.isNegative) {
    throw StateError('receiveTimeout should be positive');
  }
  _receiveTimeout = value;
}