MorphSkinStyle constructor

const MorphSkinStyle({
  1. required String name,
  2. required double blend,
  3. double cell = 6,
  4. int smoothPasses = 2,
})

Creates a named knob bundle.

Implementation

const MorphSkinStyle({
  required this.name,
  required this.blend,
  this.cell = 6,
  this.smoothPasses = 2,
});