remove method

Future<void> remove(
  1. String event
)

Removes the listener for the specified player String event type

  • event stop listening for this String event

Implementation

Future<void> remove(String event) async {
  await _methodChannel.invokeMethod<void>('remove', event);
}