You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
375 B
12 lines
375 B
import 'package:nextcloud/src/api/files.openapi.dart'; |
|
import 'package:nextcloud/src/client.dart'; |
|
|
|
export 'src/api/files.openapi.dart'; |
|
|
|
// ignore: public_member_api_docs |
|
extension FilesExtension on NextcloudClient { |
|
static final _files = Expando<FilesClient>(); |
|
|
|
/// Client for the files APIs |
|
FilesClient get files => _files[this] ??= FilesClient.fromClient(this); |
|
}
|
|
|