applyTheme method

void applyTheme(
  1. HubbleThemeData theme
)

Implementation

void applyTheme(HubbleThemeData theme) async {
  color.applyTheme(theme);
  border = Border(
    top: top.copyWith(color: color.color),
    bottom: bottom.copyWith(color: color.color),
    left: left.copyWith(color: color.color),
    right: right.copyWith(color: color.color),
  );
}