update<T> method

void update<T>(
  1. T args, {
  2. String tag = "",
})

Implementation

void update<T>(T args, {String tag = ""}) {
  final systems = _systems[tag];
  if (systems == null) return;
  for (final system in systems) {
    system.update(args);
  }
}