conversionBackgroundColor static method

Color conversionBackgroundColor(
  1. BuildContext context
)

Implementation

static Color conversionBackgroundColor(BuildContext context) {
  return Theme.of(context).brightness == Brightness.dark
      ? berBackground2
      : firstBackground;
}