TransformBottomDialog constructor

const TransformBottomDialog({
  1. Key? key,
  2. required String title,
  3. TextStyle titleTextStyle = const TextStyle(color: Color(0xFF222222), fontSize: 16, fontWeight: FontWeight.bold),
  4. Color backgroundColor = Colors.white,
  5. EdgeInsetsGeometry padding = const EdgeInsets.all(24),
  6. Widget? closeButton,
  7. required Widget child,
  8. Function? onClose,
})

Implementation

const TransformBottomDialog({
  Key? key,
  required this.title,
  this.titleTextStyle = const TextStyle(color: Color(0xFF222222), fontSize: 16, fontWeight: FontWeight.bold),
  this.backgroundColor = Colors.white,
  this.padding = const EdgeInsets.all(24),
  this.closeButton,
  required this.child,
  this.onClose,
}) : super(key: key);