createShadowEffect function

TextEffect createShadowEffect({
  1. required List<Shadow> shadows,
})

Factory function to create shadow effect instances.

This function is internal and not exposed in the public API.

Implementation

TextEffect createShadowEffect({
  required List<Shadow> shadows,
}) {
  return _ShadowEffectImpl(shadows: shadows);
}