RefChain constructor

RefChain(
  1. List<VariableElement> elementList
)

Implementation

RefChain(this.elementList) {
		// Ingore the nullability of the first element
  final _elementList = elementList.sublist(1);
  isNullable = _elementList.any((x) => checkNullable(x));
  makeRef();
}