$copy method

void $copy(
  1. CSSBus<CSSBus> bus
)
inherited

Implementation

void $copy(CSSBus bus) {
  _args.update(
    iD,
    (a) => a..addAll(bus.$args),
    ifAbsent: () => bus.$args,
  );
  _cache.update(
    iD,
    (a) => a..addAll(bus.$cache),
    ifAbsent: () => bus.$cache,
  );
}