LiningDrawerStyle constructor

const LiningDrawerStyle({
  1. Color bottomColor = const Color(0xFF3a3b3c),
  2. Color middleColor = Colors.red,
  3. Color mainColor = Colors.white,
  4. double bottomOpenRatio = 1.0,
  5. double middleOpenRatio = 0.90,
  6. double mainOpenratio = 0.82,
})

Implementation

const LiningDrawerStyle({
  this.bottomColor = const Color(0xFF3a3b3c),
  this.middleColor = Colors.red,
  this.mainColor = Colors.white,
  this.bottomOpenRatio = 1.0,
  this.middleOpenRatio = 0.90,
  this.mainOpenratio = 0.82,
});