parse method

Shadow parse(
  1. BuildContext context
)

Implementation

Shadow parse(BuildContext context) {
  return Shadow(
    color: color.toColor(context) ?? Colors.transparent,
    offset: (offset)?.parse ?? Offset.zero,
    blurRadius: (blurRadius) ?? 0.0,
  );
}