add method

Add a PayConfirmationModel to the repository, cached

Implementation

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