EsigBottomSheetDialog constructor

const EsigBottomSheetDialog({
  1. Key? key,
  2. double? height,
  3. required Widget child,
  4. Text? titulo,
  5. Icon? closeIcon,
  6. EdgeInsets? padding,
  7. dynamic result,
})

Implementation

const EsigBottomSheetDialog({
  Key? key,
  this.height,
  required this.child,
  this.titulo,
  this.closeIcon,
  this.padding,
  this.result,
}) : super(key: key);