ModelRF constructor

ModelRF({
  1. Object? model,
  2. String? displayName,
  3. Icon? displayIcon,
  4. String displayImage = "assets/images/profile.png",
  5. bool syncable = true,
  6. String syncStatusField = 'DataStatus',
  7. List<Object>? fetchDependencies,
  8. bool fetchIncludeChild = true,
  9. bool initialFetch = false,
  10. String selectFetch = "",
  11. String whereFetch = "",
  12. String orderFetch = "",
  13. bool fetchBeforeSignUp = false,
  14. bool alreadyFetched = false,
  15. Function? fetchDependencyCallback,
})

Implementation

ModelRF({
  this.model,
  this.displayName,
  this.displayIcon,
  this.displayImage = "assets/images/profile.png",
  this.syncable = true,
  this.syncStatusField = 'DataStatus',
  this.fetchDependencies,
  this.fetchIncludeChild = true,
  this.initialFetch = false,
  this.selectFetch = "",
  this.whereFetch = "",
  this.orderFetch = "",
  this.fetchBeforeSignUp = false,
  this.alreadyFetched = false,
  this.fetchDependencyCallback,
});