removeOutputListener static method

void removeOutputListener(
  1. OutputCallback callback
)

Removes a OutputCallback which was previously registered.

Returns whether the callback was successfully removed.

Implementation

static void removeOutputListener(OutputCallback callback) {
  _outputCallbacks.remove(callback);
}