Background constructor
- Color? color,
- GridSettings? grid,
Implementation
Background({Color? color, GridSettings? grid})
: color = color ?? SceneDefaults.backgroundColors.first,
grid = grid ?? GridSettings();
Background({Color? color, GridSettings? grid})
: color = color ?? SceneDefaults.backgroundColors.first,
grid = grid ?? GridSettings();