$store<R extends FirestoreEntity<R> > method
Stores an R entity which in the corresponding subcollection of this entity.
Implementation
Future<R?> $store<R extends FirestoreEntity<R>>(R entity) async {
return await entity.withParent(this as T).save();
}