removeControl method

void removeControl(
  1. String? name
)

Remove a control from this group.

Implementation

void removeControl(String? name) {
  controls.remove(name);
}