custom pwa and shortcut support

This commit is contained in:
Fabian Freund
2026-03-26 10:38:36 +01:00
parent b0c9d6c283
commit fe07b182ec
30 changed files with 896 additions and 69 deletions
@@ -22,9 +22,10 @@ import 'package:fast_equatable/fast_equatable.dart';
class ReceivedIntentParameter with FastEquatable {
final String? content;
final String? tool;
final String? contextId;
ReceivedIntentParameter(this.content, this.tool);
ReceivedIntentParameter(this.content, this.tool, {this.contextId});
@override
List<Object?> get hashParameters => [content, tool];
List<Object?> get hashParameters => [content, tool, contextId];
}