FrontendConfig constructor

FrontendConfig({
  1. String? gender,
  2. String? thumbnail,
  3. String? canvas,
  4. Tilt? tilt,
  5. FaceBbox? faceBbox,
})

This is constructor of class FrontendConfig tilt,faceBbox is contains object value gender , thumbnail ,canvas contains String values

Implementation

FrontendConfig({
  this.gender,
  this.thumbnail,
  this.canvas,
  this.tilt,
  this.faceBbox,
});