hasOutput method

bool hasOutput(
  1. OutputType type
)

Implementation

bool hasOutput(OutputType type) {
  if (feature.output != null) {
    return feature.output!.containsKey(type);
  }
  return false;
}