KinSheet constructor

const KinSheet({
  1. Key? key,
  2. required Widget child,
  3. bool showHandle = true,
  4. bool showClose = true,
  5. EdgeInsetsGeometry? padding,
  6. KinMaterial? material,
})

Implementation

const KinSheet({
  super.key,
  required this.child,
  this.showHandle = true,
  this.showClose = true,
  this.padding,
  this.material,
});