lazy property

bool lazy
final

Controls when should the connection be established.

  • false: Establish a connection immediately. Use onNonLazyError to handle errors.
  • true: Establish a connection on first subscribe and close on last unsubscribe. Use the subscription sink's error to handle errors.

@default true

Implementation

final bool lazy;