Receives the ecoded value before decoding.
@override Object? beforeDecode(Object? value) { if (value is String) { return jsonDecode(value.replaceAll("\\", "")) as T; } return value; }