jsonEncoded method
Implementation
String jsonEncoded({bool sendIntentLog = false}) => jsonEncode(toJson(sendIntentLog: sendIntentLog), toEncodable: (dynamic value) {
if (value is DateTime) return value.toIso8601String();
return value.toString();
});