custom static method
Creates a custom theme.
Implementation
static SkeletonTheme custom({
required Color baseColor,
required Color highlightColor,
double borderRadius = 4.0,
}) {
return SkeletonTheme(
baseColor: baseColor,
highlightColor: highlightColor,
borderRadius: borderRadius,
);
}