systemBrightness static method

Brightness? systemBrightness(
  1. BuildContext context
)

System brightness is only available in client-side.

Returns null in server-side or when no NakiThemeProvider is in the component tree.

Implementation

static Brightness? systemBrightness(BuildContext context) =>
    of(context)?.systemBrightness;