ExpandableCard constructor

const ExpandableCard({
  1. Key? key,
  2. Border? shape,
  3. double elevation = 2,
  4. EdgeInsets margin = const EdgeInsets.all(12.0),
  5. required Widget child,
  6. required Widget expandableChild,
  7. Alignment expandedAlignment = Alignment.center,
})

Implementation

const ExpandableCard(
    {Key? key,
    this.shape,
    this.elevation = 2,
    this.margin = const EdgeInsets.all(12.0),
    required this.child,
    required this.expandableChild,
    this.expandedAlignment = Alignment.center})
    : super(key: key);