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