hasSingleOutput property

  1. @override
bool get hasSingleOutput
override

Implementation

@override
bool get hasSingleOutput {
  if (states.length > 1) {
    return false;
  } else {
    final first = states.first;
    return first.hasSingleOutput;
  }
}