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