RoundButton constructor

const RoundButton({
  1. required void onPressed(),
  2. required String string,
  3. String tooltip = '',
  4. Key? key,
})

Implementation

const RoundButton(
    {required this.onPressed,
    required this.string,
    this.tooltip = '',
    Key? key})
    : super(key: key);