getbGColor static method

Color getbGColor(
  1. BuildContext context
)

Implementation

static Color getbGColor(BuildContext context) {
  return Theme.of(context).brightness == Brightness.dark
      ? darkModeBackgroundColor
      : white;
}