add method
Implementation
@override
Future<DividerModel> add(DividerModel value) {
  return dividerCollection
      .doc(value.documentID)
      .set(value.toEntity(appId: appId).toDocument())
      .then((_) => value);
}@override
Future<DividerModel> add(DividerModel value) {
  return dividerCollection
      .doc(value.documentID)
      .set(value.toEntity(appId: appId).toDocument())
      .then((_) => value);
}