getJsonFieldsVisibleValues method
Returns a Map with allFields values without JsonField.hidden.
- Note that JsonField.visible is an alias to
JsonField(hidden: false)
.
Implementation
Map<String, dynamic> getJsonFieldsVisibleValues(O? obj,
{bool withHashCode = false}) =>
getFieldsValues(obj, withHashCode: withHashCode);