disposeTray method

  1. @protected
Future<void> disposeTray(
  1. Id id
)

Removes and cleans up a single item.

This is the opposite of addTray.

Implementation

@protected
Future<void> disposeTray(Id id) async {
  await _channel.invokeMethod('disposeTray', {'id': id});
}