appBackgroundColor property

Color appBackgroundColor

Implementation

Color get appBackgroundColor {
  return _appBackgroundColor ??
      (brightness == Brightness.light
          ? const Color(0xfff5f6f8)
          : const Color(0xff3d3e3e));
}