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.
13 lines
452 B
13 lines
452 B
// coverage:ignore-file |
|
import 'package:nextcloud/src/api/user_status.openapi.dart'; |
|
import 'package:nextcloud/src/client.dart'; |
|
|
|
export 'src/api/user_status.openapi.dart'; |
|
|
|
// ignore: public_member_api_docs |
|
extension UserStatusExtension on NextcloudClient { |
|
static final _userStatus = Expando<UserStatusClient>(); |
|
|
|
/// Client for the user_status APIs |
|
UserStatusClient get userStatus => _userStatus[this] ??= UserStatusClient.fromClient(this); |
|
}
|
|
|