TypeArguments constructor

TypeArguments(
  1. {String? name,
  2. List<InstanceRef>? types,
  3. required String id}
)

Implementation

TypeArguments({
  this.name,
  this.types,
  required String id,
}) : super(
        id: id,
      );