button abstract method

Widget button({
  1. String? text,
  2. String? hideLabel,
  3. IconData? icon,
  4. Color? color,
  5. ButtonSize size = ButtonSize.medium,
  6. ButtonStyle style = ButtonStyle.outlined,
  7. bool isPending = false,
  8. bool isDisabled = false,
})

Implementation

Widget button({
  String? text,
  //tooltip
  String? hideLabel,
  IconData? icon,
  Color? color,
  ButtonSize size = ButtonSize.medium,
  ButtonStyle style = ButtonStyle.outlined,
  bool isPending = false,
  bool isDisabled = false,
});