NomoCardThemeData constructor

const NomoCardThemeData({
  1. Color shadowColor = const Color(0x33000000),
  2. BoxBorder? border = null,
  3. Color backgroundColor = Colors.white,
  4. double elevation = 1.0,
  5. Offset offset = Offset.zero,
  6. BorderRadiusGeometry borderRadius = BorderRadius.zero,
  7. EdgeInsetsGeometry padding = EdgeInsets.zero,
  8. EdgeInsetsGeometry margin = EdgeInsets.zero,
})

Implementation

const NomoCardThemeData({
  this.shadowColor = const Color(0x33000000),
  this.border = null,
  this.backgroundColor = Colors.white,
  this.elevation = 1.0,
  this.offset = Offset.zero,
  this.borderRadius = BorderRadius.zero,
  this.padding = EdgeInsets.zero,
  this.margin = EdgeInsets.zero,
});