addOnElementCallback method

void addOnElementCallback(
  1. void callback(
    1. PropertyStream propertyStream,
    2. int index
    )
)

Implementation

void addOnElementCallback(
  void Function(PropertyStream propertyStream, int index) callback,
) {
  onElementCallbacks.add(callback);
}