DrawableButtonWidget constructor

const DrawableButtonWidget({
  1. Key? key,
  2. String title = 'http log',
  3. GestureTapCallback? onTap,
  4. double btnSize = 66,
  5. Color? btnColor,
})

Implementation

const DrawableButtonWidget({
  Key? key,
  this.title = 'http log',
  this.onTap,
  this.btnSize = 66,
  this.btnColor,
}) : super(key: key);