copyWith method

GlowThemeData copyWith({
  1. Color? glowColor,
  2. Offset? offset,
  3. double? spreadRadius,
  4. double? blurRadius,
})

Implementation

GlowThemeData copyWith({
  Color? glowColor,
  Offset? offset,
  double? spreadRadius,
  double? blurRadius,
}) =>
    GlowThemeData(
      glowColor: glowColor ?? glowColor,
      offset: offset ?? offset,
      spreadRadius: spreadRadius ?? spreadRadius,
      blurRadius: blurRadius ?? blurRadius,
    );