AutoSizeWidget constructor

const AutoSizeWidget({
  1. Key? key,
  2. BoxDecoration? boxDecoration,
  3. Color? borderColor,
  4. required double initialHeight,
  5. required bool showIcon,
  6. required Widget child,
  7. required double initialWidth,
  8. required double maxWidth,
  9. required double maxHeight,
})

Implementation

const AutoSizeWidget(
    {Key? key,
    this.boxDecoration,
    this.borderColor,
    required this.initialHeight,
    required this.showIcon,
    required this.child,
    required this.initialWidth,
    required this.maxWidth,
    required this.maxHeight});