PopButton constructor

const PopButton({
  1. Key? key,
  2. required String label,
  3. TextStyle? textStyle,
})

Implementation

const PopButton({
  Key? key,
  required this.label,
  this.textStyle,
}) : super(key: key);