EsigBottomSheetDialog constructor

const EsigBottomSheetDialog({
  1. Key? key,
  2. double? height,
  3. required Widget child,
  4. Text titulo = const Text('TÍTULO'),
  5. Icon? closeIcon = const Icon(Icons.close, color: Colors.black),
  6. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 20),
  7. dynamic result,
})

Implementation

const EsigBottomSheetDialog({
  Key? key,
  this.height,
  required this.child,
  this.titulo = const Text('TÍTULO'),
  this.closeIcon = const Icon(Icons.close, color: Colors.black),
  this.padding = const EdgeInsets.symmetric(horizontal: 20),
  this.result,
}) : super(key: key);