textShadow method
Implementation
T textShadow({
Color color = const Color(0x34000000),
double blurRadius = 0.0,
Offset offset = Offset.zero,
}) =>
copyWith(
style: (style ?? const TextStyle()).copyWith(
shadows: [
Shadow(
color: color,
blurRadius: blurRadius,
offset: offset,
),
],
),
) as T;