RequestTypeFieldValueDTO.fromJson constructor
Implementation
factory RequestTypeFieldValueDTO.fromJson(Map<String, Object?> json) {
return RequestTypeFieldValueDTO(
children: (json[r'children'] as List<Object?>?)
?.map((i) => RequestTypeFieldValueDTO.fromJson(
i as Map<String, Object?>? ?? const {}))
.toList() ??
[],
label: json[r'label'] as String?,
value: json[r'value'] as String?,
);
}