backElevatedButtonNormal function
Implementation
backElevatedButtonNormal(BuildContext context, { Color? color, Color? textColor } ) => ElevatedButton.styleFrom(
foregroundColor: (textColor==null)? Theme.of(Get.context!).primaryColorDark :textColor, backgroundColor: (color==null)?Theme.of(Get.context!).primaryColorLight:color, padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 8),
);