copyWith method

FShadow copyWith({
  1. FGeneralTypeInput? x,
  2. FGeneralTypeInput? y,
  3. FGeneralTypeInput? spread,
  4. FGeneralTypeInput? blur,
  5. FFill? fill,
  6. FSize? opacity,
})

Implementation

FShadow copyWith({
  FGeneralTypeInput? x,
  FGeneralTypeInput? y,
  FGeneralTypeInput? spread,
  FGeneralTypeInput? blur,
  FFill? fill,
  FSize? opacity,
}) =>
    FShadow(
      x: x ?? this.x,
      y: y ?? this.y,
      spread: spread ?? this.spread,
      blur: blur ?? this.blur,
      fill: fill ?? this.fill,
      opacity: opacity ?? this.opacity,
    );