XTextShadowsData constructor

const XTextShadowsData({
  1. Shadow? small,
  2. Shadow? medium,
  3. Shadow? large,
})

Implementation

const XTextShadowsData({
  final Shadow? small,
  final Shadow? medium,
  final Shadow? large,
})  : _small = small ??
          const Shadow(
            blurRadius: XAuxiliarySizes.x2,
            color: Color(0x44000000),
          ),
      _medium = medium ??
          const Shadow(
            blurRadius: XStandardSizes.x4,
            color: Color(0x44000000),
          ),
      _large = large ??
          const Shadow(
            blurRadius: XStandardSizes.x8,
            color: Color(0x44000000),
          );