Object? specToJson(Object? obj) { if (obj is ToJsonable) { return obj.toJson(); } else { return obj; } }