dev
dart 18 lines 416 Bytes
Raw
1 class WCConnectionModel {
2 final String? title;
3 final String? text;
4 final List<String>? elements;
5 final Map<String, void Function()>? elementActions;
6
7 WCConnectionModel({
8 this.title,
9 this.text,
10 this.elements,
11 this.elementActions,
12 });
13
14 @override
15 String toString() {
16 return 'WCConnectionModel(title: $title, text: $text, elements: $elements, elementActions: $elementActions)';
17 }
18 }