EWBaseButton.filledTonal constructor
EWBaseButton.filledTonal({})
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,
);