itemsToJson static method
Implementation
static String itemsToJson(List<ATHMovilItem>? items) {
String json = "";
if (items != null) {
json = "";
items.forEach((element) {
json = json + "\n" + element.toJson().toString();
});
}
return json;
}