questionBackgroundIsFullyTransparent property

bool get questionBackgroundIsFullyTransparent

Implementation

bool get questionBackgroundIsFullyTransparent {
  if(questionBackgroundColor == null) {
    return false;
  }
  return questionBackgroundColor!.a == 0;
}