EWBaseButton.elevated constructor
EWBaseButton.elevated({})
Implementation
factory EWBaseButton.elevated({
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 Elevated(),
showTitle: showTitle,
icon: icon,
style: style,
);