PipenPrimaryButtonBordered constructor

const PipenPrimaryButtonBordered({
  1. Key? key,
  2. dynamic state,
  3. VoidCallback? onPressed,
  4. Color? borderColor,
  5. required String title,
})

Implementation

const PipenPrimaryButtonBordered({
  super.key,
  this.state,
  this.onPressed,
  this.borderColor,
  required this.title,
});