HubbleTextShadow constructor
HubbleTextShadow({
- required HubbleColor color,
- required Offset offset,
- required double blurRadius,
Implementation
HubbleTextShadow({
required this.color,
required this.offset,
required this.blurRadius,
}) : shadow = Shadow(
color: color.color ?? Colors.black38,
offset: offset,
blurRadius: blurRadius,
);