DashboardCard constructor

const DashboardCard({
  1. Key? key,
  2. required Widget child,
  3. double? height,
  4. EdgeInsetsGeometry padding = const EdgeInsets.all(20),
})

Implementation

const DashboardCard({
  Key? key,
  required this.child,
  this.height,
  this.padding = const EdgeInsets.all(20),
}) : super(key: key);