scale method

NeumorphicDecoration scale(
  1. double factor
)

Implementation

NeumorphicDecoration scale(double factor) {
  print("scale");
  return NeumorphicDecoration(
      isForeground: this.isForeground,
      renderingByPath: this.renderingByPath,
      splitBackgroundForeground: this.splitBackgroundForeground,
      shape: NeumorphicBoxShape.lerp(null, shape, factor)!,
      style: style.copyWith());
}