SdlxMessageBoxData constructor
SdlxMessageBoxData({
- int flags = 0,
- Pointer<
SdlWindow> ? window, - String title = '',
- String message = '',
- List<
SdlxMessageBoxButtonData> ? buttons, - SdlxMessageBoxColorScheme? colorScheme,
Implementation
SdlxMessageBoxData({
this.flags = 0,
Pointer<SdlWindow>? window,
this.title = '',
this.message = '',
List<SdlxMessageBoxButtonData>? buttons,
this.colorScheme,
}) {
this.window = window ?? nullptr;
this.buttons = buttons ?? [];
selectedButtonId = 0;
}