applyTheme method

void applyTheme(
  1. HubbleThemeData theme
)

Implementation

void applyTheme(HubbleThemeData theme) {
  color.applyTheme(theme);
  boxShadow = BoxShadow(
    color: color.color ?? Colors.black38,
    offset: offset,
    blurRadius: blurRadius,
    spreadRadius: spreadRadius,
  );
}