switch to new intent plugin
This commit is contained in:
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user