getJsonFieldsVisibleValues method

Map<String, dynamic> getJsonFieldsVisibleValues(
  1. O? obj, {
  2. bool withHashCode = false,
})

Returns a Map with allFields values without JsonField.hidden.

Implementation

Map<String, dynamic> getJsonFieldsVisibleValues(O? obj,
        {bool withHashCode = false}) =>
    getFieldsValues(obj, withHashCode: withHashCode);