generate static method
Implementation
static Widget generate(
Widget child, {
Color? color,
double borderRadius = 8,
}) {
color ??= Colors.grey[300]!;
return _SmartPlaceholder(
child: child,
color: color,
borderRadius: borderRadius,
);
}