ShakeConfig constructor

const ShakeConfig({
  1. required double offset,
  2. List<int>? pattern,
  3. List<int>? intensities,
  4. VibrationType vibrationType = VibrationType.haptic,
})

Implementation

const ShakeConfig({
  required this.offset,
  this.pattern,
  this.intensities,
  this.vibrationType = VibrationType.haptic,
});