OverlayConfiguration constructor

const OverlayConfiguration({
  1. Color color = const Color.fromRGBO(0, 0, 0, 0.1),
  2. double radius = 40,
  3. double width = 40,
  4. double height = 40,
})

Implementation

const OverlayConfiguration({
  this.color = const Color.fromRGBO(0, 0, 0, 0.1),
  this.radius = 40,
  this.width = 40,
  this.height = 40,
});