CallWithArguments constructor

const CallWithArguments({
  1. required List<Constant?> positionalArguments,
  2. required Map<String, Constant?> namedArguments,
  3. required String? loadingUnit,
  4. required Location location,
})

Implementation

const CallWithArguments({
  required this.positionalArguments,
  required this.namedArguments,
  required super.loadingUnit,
  required super.location,
});