add method

Add a ListedItemModel to the repository, cached

Implementation

@override
Future<ListedItemModel> add(ListedItemModel value) {
  return reference.add(value).then((newValue) {
    fullCache[value.documentID] = newValue;
    return newValue;
  });
}