toWebDavFiles method
Convert the WebDavMultistatus into a WebDavFile for easier handling
Implementation
List<WebDavFile> toWebDavFiles() =>
responses.where((response) => response.href != null).map((response) => WebDavFile(response: response)).toList();