copyFrom method

GlowThemeData copyFrom({
  1. required GlowThemeData other,
})

Implementation

GlowThemeData copyFrom({
  required GlowThemeData other,
}) =>
    GlowThemeData(
      glowColor: other.glowColor ?? glowColor,
      offset: other.offset ?? offset,
      spreadRadius: other.spreadRadius ?? spreadRadius,
      blurRadius: other.blurRadius ?? blurRadius,
    );