ShadowLayer constructor

const ShadowLayer({
  1. required double opacity,
  2. required double radius,
  3. required Map<String, double> offset,
})

Creates a new ShadowLayer instance.

Implementation

const ShadowLayer({
  required this.opacity,
  required this.radius,
  required this.offset,
});