Model constructor

Model({
  1. String? image,
  2. HandModelLandmarks? landmarks,
  3. Offsets? offsets,
  4. String? type,
})

Implementation

Model({
  this.image,
  this.landmarks,
  this.offsets,
  this.type,
});