SWOutlinedButton constructor

const SWOutlinedButton(
  1. String text,
  2. dynamic onPressed(), {
  3. double? width,
  4. double? height,
  5. Key? key,
})

Implementation

const SWOutlinedButton(
  this.text,
  this.onPressed, {
  double? width,
  double? height,
  Key? key,
})  : _width = width,
      _height = height,
      super(key: key);