NomoElevationThemeData constructor

const NomoElevationThemeData({
  1. Color backgroundColor = Colors.white,
  2. Color shadowColor = Colors.black26,
  3. double elevation = 1.0,
  4. Duration animationDuration = const Duration(milliseconds: 200),
  5. Curve animationCurve = Curves.fastOutSlowIn,
})

Implementation

const NomoElevationThemeData({
  this.backgroundColor = Colors.white,
  this.shadowColor = Colors.black26,
  this.elevation = 1.0,
  this.animationDuration = const Duration(milliseconds: 200),
  this.animationCurve = Curves.fastOutSlowIn,
});