opaque method

bool opaque(
  1. int? index
)

Implementation

bool opaque(int? index) {
  return this.navBarEssentials!.items == null
      ? true
      : !(this.navBarEssentials!.items![index!].opacity < 1.0);
}