OptionsStyle constructor

OptionsStyle({
  1. double? containerHeight,
  2. EdgeInsets? padding,
  3. Offset? offset,
  4. BoxDecoration decorationBuilder(
    1. double height
    )?,
  5. Duration? duration,
  6. double? startingHeight,
  7. Curve? curve,
})

Creates a instance of the options style class.

Implementation

OptionsStyle({
  this.containerHeight,
  this.padding,
  this.offset,
  this.decorationBuilder,
  this.duration,
  this.startingHeight,
  this.curve,
});