TypeReference constructor

const TypeReference({
  1. required String type,
  2. required bool isList,
  3. required TypeLocation location,
  4. required TypeNamespace? namespace,
})

Implementation

const TypeReference({
  required this.type,
  required this.isList,
  required this.location,
  required this.namespace,
});