HubbleTextShadow constructor

HubbleTextShadow({
  1. required HubbleColor color,
  2. required Offset offset,
  3. 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,
      );