Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:io
  3. HttpHeaders
  4. forEach abstract method
forEach
description

forEach abstract method

voidforEach(
  1. voidaction(
    1. Stringname,
    2. List<String>values
    )
)

Performs theaction on each header.

Theaction function is called with each header's name and a listof the header's values. The casing of the name string is determined bythe lastadd orset operation for that particular header,which defaults to lower-casing the header name unless explicitlyset to preserve the case.

Implementation

void forEach(void Function(String name, List<String> values) action);
  1. Dart
  2. dart:io
  3. HttpHeaders
  4. forEach abstract method
HttpHeaders class

[8]ページ先頭

©2009-2025 Movatter.jp