Serializes the object.
static String? toIsar(MediaItem? object) { if (object == null) { return null; } return jsonEncode(object.toJson()); }