switch to new intent plugin

This commit is contained in:
Fabian Freund
2025-05-05 14:31:15 +02:00
parent a2d59e2e39
commit 53bba6e633
6 changed files with 33 additions and 24 deletions
@@ -1,6 +1,11 @@
class ReceivedIntentParameter {
import 'package:fast_equatable/fast_equatable.dart';
class ReceivedIntentParameter with FastEquatable {
final String? content;
final String? tool;
ReceivedIntentParameter(this.content, this.tool);
@override
List<Object?> get hashParameters => [content, tool];
}