dynamite: Fix descriptions of methods with summary and description
@ -579,7 +579,7 @@ class OpenAPIBuilder implements Builder {
..docs.addAll([
..._descriptionToDocs(operation.summary),
if (operation.summary != null && operation.description != null) ...[
'',
'///',
],
..._descriptionToDocs(operation.description),
]);
@ -1245,7 +1245,7 @@ class NextcloudUnifiedPushProviderClient {
}
/// Request to get push messages.
///
/// This is a public page since it has to be handle by the non-connected app (NextPush app and not Nextcloud-app)
Future<NextcloudUnifiedPushProviderSyncDeviceResponse401ApplicationJson> syncDevice(
{required String deviceId}) async {