update dependencies and bump version to 0.1.7+45

- Bump version to `0.1.7+45` and update SDK constraint to `>=3.8.0 <4.0.0`.
- Update numerous dependencies
This commit is contained in:
2026-01-31 22:40:50 +01:00
parent 0525453d48
commit 7a3b69fade
60 changed files with 3432 additions and 2586 deletions

View File

@@ -7,13 +7,9 @@ part of 'downloadFileResponse.dart';
// **************************************************************************
DownloadFileResponse _$DownloadFileResponseFromJson(
Map<String, dynamic> json) =>
DownloadFileResponse(
json['path'] as String,
);
Map<String, dynamic> json,
) => DownloadFileResponse(json['path'] as String);
Map<String, dynamic> _$DownloadFileResponseToJson(
DownloadFileResponse instance) =>
<String, dynamic>{
'path': instance.path,
};
DownloadFileResponse instance,
) => <String, dynamic>{'path': instance.path};