getCheckedItemsJson method

List<Map<String, dynamic>> getCheckedItemsJson()

Get JSON representation of checked items

Implementation

List<Map<String, dynamic>> getCheckedItemsJson() {
  return checkedItems.map((item) => item.toJson()).toList();
}