validate method

  1. @override
void validate()

Validates all port maps owned by this interface without connecting them.

Implementation

@override
void validate() {
  for (final portMap in portMaps) {
    portMap.validate();
  }
}