ShadowConfig constructor

const ShadowConfig({
  1. required bool enabled,
  2. required List<ShadowLayer> layers,
})

Creates a new ShadowConfig instance.

Implementation

const ShadowConfig({
  required this.enabled,
  required this.layers,
});