EnumConstantArgumentsImpl constructor

EnumConstantArgumentsImpl({
  1. required TypeArgumentListImpl? typeArguments,
  2. required ConstructorSelectorImpl? constructorSelector,
  3. required ArgumentListImpl argumentList,
})

Implementation

EnumConstantArgumentsImpl({
  required this.typeArguments,
  required this.constructorSelector,
  required this.argumentList,
}) {
  _becomeParentOf(typeArguments);
  _becomeParentOf(constructorSelector);
  _becomeParentOf(argumentList);
}