TypeArgumentsRef constructor

TypeArgumentsRef({
  1. String? name,
  2. required String id,
})

Implementation

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