ImportableType constructor

const ImportableType({
  1. required String name,
  2. String? import,
  3. bool isNullable = false,
  4. List<ImportableType> typeArguments = const [],
  5. Set<String>? otherImports,
  6. String? nameInRecord,
})

Implementation

const ImportableType({
  required this.name,
  this.import,
  this.isNullable = false,
  this.typeArguments = const [],
  this.otherImports,
  this.nameInRecord,
}) : _isRecordType = false;