NxCard constructor

const NxCard({
  1. Key? key,
  2. Widget? child,
  3. Widget? title,
  4. List<Widget>? actions,
  5. EdgeInsetsGeometry? padding,
  6. Color? color,
})

Implementation

const NxCard({
  Key? key,
  this.child,
  this.title,
  this.actions,
  this.padding,
  this.color,
}) : super(key: key);