shadow method
Implementation
Text shadow(Color color, {Offset offset = Offset.zero, double blur = 0}) {
return copyWith(
style: style.copyWith(
shadows: [
Shadow(
color: color,
offset: offset,
blurRadius: blur,
)
],
),
);
}