This commit is contained in:
Christien Rioux
2023-07-06 10:41:38 -05:00
parent 6a47363d8c
commit 5e0e389915
6 changed files with 1569 additions and 208 deletions
+2 -2
View File
@@ -242,10 +242,10 @@ _$VeilidUpdateValueChange _$$VeilidUpdateValueChangeFromJson(
_$VeilidUpdateValueChange(
key: Typed<FixedEncodedString43>.fromJson(json['key']),
subkeys: (json['subkeys'] as List<dynamic>)
.map(ValueSubkeyRange.fromJson)
.map((e) => ValueSubkeyRange.fromJson(e as Map<String, dynamic>))
.toList(),
count: json['count'] as int,
valueData: ValueData.fromJson(json['value_data']),
valueData: ValueData.fromJson(json['value_data'] as Map<String, dynamic>),
$type: json['kind'] as String?,
);