onTrailers method

void onTrailers(
  1. IonService service,
  2. Map<String, String> trailers
)

Implementation

void onTrailers(IonService service, Map<String, String> trailers) {
  print('Received trailer for ${service.name} metadata: $trailers');
  // Merge trailers.
  trailers.forEach((key, value) {
    this.trailers[key] = value;
  });
}