add method

Add a BackendRequestModel to the repository, cached

Implementation

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