FawryButton constructor

const FawryButton({
  1. Key? key,
  2. double height = 36.0,
  3. double width = 200.0,
})

Implementation

const FawryButton({
  Key? key,
  this.height = 36.0,
  this.width = 200.0,
}) : super(
        key: key,
        height: height,
        width: width,
      );