effectiveStyle property

SheetStyle get effectiveStyle

Implementation

SheetStyle get effectiveStyle {
  return SheetStyle.from(style).copyWith(
    variant: variant,
    severity: severity,
    width: width,
    height: height,
    margin: margin,
    padding: padding,
    alignment: alignment,
    clipBehavior: clipBehavior,
    overlayColor: overlayColor,
    shadowColor: shadowColor,
    elevation: elevation,
    foregroundStyle: foregroundStyle,
    foregroundColor: foregroundColor,
    foregroundOpacity: foregroundOpacity,
    foregroundAlpha: foregroundAlpha,
    foregroundSpacing: foregroundSpacing,
    backgroundColor: backgroundColor,
    backgroundOpacity: backgroundOpacity,
    backgroundAlpha: backgroundAlpha,
    borderColor: borderColor,
    borderOpacity: borderOpacity,
    borderAlpha: borderAlpha,
    borderWidth: borderWidth,
    borderRadius: borderRadius,
    borderStyle: borderStyle,
    shape: shape,
    iconColor: iconColor,
    iconOpacity: iconOpacity,
    iconSize: iconSize,
  );
}