ArnaCard constructor

const ArnaCard({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. required Widget child,
  5. EdgeInsetsGeometry padding = Styles.normal,
  6. EdgeInsetsGeometry? margin,
})

Creates a card in the Arna style.

Implementation

const ArnaCard({
  super.key,
  this.height,
  this.width,
  required this.child,
  this.padding = Styles.normal,
  this.margin,
});