rebuild method

Rebuild this theme data by applying updates to a BoustroComponentConfigBuilder.

Implementation

BoustroComponentConfigData rebuild(
    dynamic Function(BoustroComponentConfigBuilder) updates) {
  final builder = BoustroComponentConfigBuilder(properties.toMap());
  updates(builder);
  return builder.build();
}