CloseConfig constructor

CloseConfig({
  1. bool isCloseAble = false,
  2. double? iconSize,
  3. void onClose()?,
})

Implementation

CloseConfig({
  this.isCloseAble = false,
  this.iconSize,
  this.onClose,
});