surface static method
Implementation
static Color surface(BuildContext context) {
return Theme.of(context).brightness == Brightness.light
? lightSurface
: darkSurface;
}
static Color surface(BuildContext context) {
return Theme.of(context).brightness == Brightness.light
? lightSurface
: darkSurface;
}