MECard constructor

const MECard({
  1. Key? key,
  2. BoxBorder? boxBorder,
  3. double width = 300,
  4. required Widget widget,
})

Implementation

const MECard({
  Key? key,
  this.boxBorder,
  this.width = 300,
  required this.widget,
}) : super(key: key);