clear method

Future<void> clear(
  1. List<Collection> collections
)

Implementation

Future<void> clear(List<Collection<dynamic>> collections) async {
  await _sendMessage(
    ClearMessageRequest(
      paths: collections.map((collection) => collection.path).toList(),
    ),
  );
}