InqvineConditionalExpanded constructor

const InqvineConditionalExpanded({
  1. required Widget collapsedChild,
  2. required Widget expandedChild,
  3. required bool isExpanded,
  4. Key? key,
})

Implementation

const InqvineConditionalExpanded({
  required this.collapsedChild,
  required this.expandedChild,
  required this.isExpanded,
  Key? key,
}) : super(key: key);