isFull method

bool isFull()

Implementation

bool isFull() {
  return this.iconColor != null &&
      this.useInkWell != null &&
      this.inkWellBorderRadius != null &&
      this.animationDuration != null &&
      this.scrollAnimationDuration != null &&
      this.crossFadePoint != null &&
      this.fadeCurve != null &&
      this.sizeCurve != null &&
      this.alignment != null &&
      this.headerAlignment != null &&
      this.bodyAlignment != null &&
      this.iconPlacement != null &&
      this.tapHeaderToExpand != null &&
      this.tapBodyToExpand != null &&
      this.tapBodyToCollapse != null &&
      this.hasIcon != null &&
      this.iconRotationAngle != null &&
      this.expandIcon != null &&
      this.collapseIcon != null;
}