static String encode(Object? data) { var json = "{}"; try { if (data != null) json = jsonEncode(data); } catch (e) { json = "{}"; } return json; }