brightness property

double brightness

Get the brightness of this window.

SDL Docs

Implementation

double get brightness => sdl.sdl.SDL_GetWindowBrightness(handle);
void brightness=(double value)

Set the brightness of this window.

SDL Docs

Implementation

set brightness(final double value) =>
    sdl.checkReturnValue(sdl.sdl.SDL_SetWindowBrightness(handle, value));