NeumorphicDecoration constructor

const NeumorphicDecoration({
  1. Color? color,
  2. BorderRadiusGeometry? borderRadius,
  3. BoxShape shape = BoxShape.rectangle,
  4. BoxBorder? border,
})

Implementation

const NeumorphicDecoration({
  this.color,
  this.borderRadius,
  this.shape = BoxShape.rectangle,
  this.border,
});