smallButton method
Implementation
Widget smallButton(BuildContext context, String? text, Function? onPressed,
{IconData? icon,
Color? color,
Color? bgColor,
bool loading = false,
bool expand = false,
double? borderRadius}) {
return CustomButton(
text: text,
onPressed: onPressed,
icon: icon,
color: color,
bgColor: bgColor,
loading: loading,
small: true,
expanded: expand,
borderRadius: borderRadius,
);
}