forEach method

  1. @override
void forEach(
  1. void f(
    1. String attribute,
    2. dynamic value
    )
)
override

runs function f for each attribute-value pair

Implementation

@override
void forEach(void f(String attribute, value)) {
  keys.forEach((attribute) {
    f(attribute, this[attribute]);
  });
}