Files
MrbWebLibre/app/lib/data/models/received_intent_parameter.dart
T

12 lines
275 B
Dart

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];
}