onOutOfBand method

void onOutOfBand(
  1. dynamic data
)

Called on outOfBand event

@api private

Implementation

void onOutOfBand(data) {
  var outOfBand = opts['outOfBand'] ?? (_) {};
  outOfBand(data);
}