EWBaseButton.filledTonal constructor

EWBaseButton.filledTonal({
  1. Key? key,
  2. void onPressed()?,
  3. Widget? icon,
  4. String? title,
  5. bool showTitle = true,
  6. bool isLoading = false,
  7. ButtonStyle? style,
})

Implementation

factory EWBaseButton.filledTonal({
  Key? key,
  void Function()? onPressed,
  Widget? icon,
  String? title,
  bool showTitle = true,
  bool isLoading = false,
  ButtonStyle? style,
}) =>
    EWBaseButton(
      key: key,
      onPressed: onPressed,
      title: title,
      buttonType: const FilledTonal(),
      showTitle: showTitle,
      icon: icon,
      style: style,
    );