File tree 2 files changed +42
-3
lines changed
lib/bademagic_module/models
2 files changed +42
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,27 @@ class Data {
11
11
12
12
// Convert JSON to Data object
13
13
factory Data .fromJson (Map <String , dynamic > json) {
14
+ if (! json.containsKey ('messages' )) {
15
+ throw Exception ('Invalid JSON: Missing "messages" key' );
16
+ }
17
+
18
+ if (json['messages' ] is ! List ) {
19
+ throw Exception ('Invalid JSON: "messages" must be a list' );
20
+ }
21
+
22
+ if (json['messages' ].isEmpty) {
23
+ throw Exception ('Invalid JSON: "messages" list is empty' );
24
+ }
25
+
14
26
var messagesFromJson = json['messages' ] as List ;
27
+
28
+ if (messagesFromJson.any ((message) => message == null )) {
29
+ throw Exception ('Invalid JSON: "messages" list contains null values' );
30
+ }
31
+
15
32
List <Message > messageList =
16
33
messagesFromJson.map ((message) => Message .fromJson (message)).toList ();
34
+
17
35
return Data (messages: messageList);
18
36
}
19
37
}
Original file line number Diff line number Diff line change @@ -27,10 +27,31 @@ class Message {
27
27
28
28
// Convert JSON to Message object
29
29
factory Message .fromJson (Map <String , dynamic > json) {
30
+ if (! json.containsKey ('text' )) {
31
+ throw Exception ('Invalid JSON: Message missing "text" key' );
32
+ }
33
+
34
+ if (! json.containsKey ('speed' )) {
35
+ throw Exception ('Invalid JSON: Message missing "speed" key' );
36
+ }
37
+
38
+ if (! json.containsKey ('mode' )) {
39
+ throw Exception ('Invalid JSON: Message missing "mode" key' );
40
+ }
41
+
42
+ if (json['text' ] is ! List ) {
43
+ throw Exception ('Invalid JSON: "text" must be a list' );
44
+ }
45
+
46
+ final textList = json['text' ] as List ;
47
+ if (textList.any ((element) => element == null )) {
48
+ throw Exception ('Invalid JSON: "text" list cannot contain null elements' );
49
+ }
50
+
30
51
return Message (
31
- text: List <String >.from (json[ 'text' ] ),
32
- flash: json['flash' ] as bool ,
33
- marquee: json['marquee' ] as bool ,
52
+ text: List <String >.from (textList ),
53
+ flash: ( json['flash' ] as bool ? ) ?? false ,
54
+ marquee: ( json['marquee' ] as bool ? ) ?? false ,
34
55
speed: Speed .fromHex (
35
56
json['speed' ] as String ), // Using helper method for safety
36
57
mode: Mode .fromHex (
You can’t perform that action at this time.
0 commit comments