ExpandButton constructor

const ExpandButton({
  1. Key? key,
  2. double? height,
  3. void onTap()?,
  4. bool fullscreen = false,
})

Implementation

const ExpandButton({
  super.key,
  this.height,
  this.onTap,
  this.fullscreen = false,
});