add method

Add a AppEntryPagesModel to the repository, cached

Implementation

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