reflects property

Iterable<ServerReflect> get reflects

Implementation

Iterable<ServerReflect> get reflects sync* {
  for (final route in routes) {
    yield* route.reflects.where((e) => e.isValid);
  }
}