addShouUpUpdate method

void addShouUpUpdate(
  1. String? name,
  2. AntdFormItemShouUpdate? shouUpdate
)

Implementation

void addShouUpUpdate(String? name, AntdFormItemShouUpdate? shouUpdate) {
  if (name == null || shouUpdate == null) {
    return;
  }

  _shouUpdates[name] = shouUpdate;
}