surfaceElevated static method

Color surfaceElevated(
  1. BuildContext context
)

Implementation

static Color surfaceElevated(BuildContext context) {
  return Theme.of(context).brightness == Brightness.light
      ? lightSurfaceElevated
      : darkSurfaceElevated;
}