forEach method

void forEach(
  1. void callback(
    1. DataFeature?
    )?
)

Implementation

void forEach(void Function(DataFeature?)? callback) {
  callMethod(
      this, 'forEach', [callback == null ? null : allowInterop(callback)]);
}