NomoCard constructor

const NomoCard({
  1. required Widget child,
  2. Key? key,
  3. double? elevation = 1,
  4. Offset? offset,
  5. Color? shadowColor,
  6. BoxBorder? border,
  7. BorderRadiusGeometry? borderRadius,
  8. Color? backgroundColor,
  9. EdgeInsetsGeometry? padding,
  10. EdgeInsetsGeometry? margin,
})

Implementation

const NomoCard({
  required this.child,
  super.key,
  this.elevation = 1,
  this.offset,
  this.shadowColor,
  this.border,
  this.borderRadius,
  this.backgroundColor,
  this.padding,
  this.margin,
});