EmergentBackground constructor

const EmergentBackground({
  1. Key? key,
  2. Widget? child,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
  5. BorderRadius? borderRadius,
  6. Color backendColor = const Color(0xFF000000),
})

Implementation

const EmergentBackground({
  super.key,
  this.child,
  this.padding,
  this.margin,
  this.borderRadius,
  this.backendColor = const Color(0xFF000000),
});