ResolvedType constructor

ResolvedType({
  1. required String name,
  2. String? import,
  3. List<ResolvedType> typeArguments = const [],
  4. bool isNullable = false,
})

Implementation

ResolvedType({
  required this.name,
  this.import,
  this.typeArguments = const [],
  this.isNullable = false,
});