graphQL constructor

const graphQL({
  1. String? uri,
  2. String? moduleName,
  3. List<String>? includes,
  4. Map<String, String> mixins = const {},
  5. Map<String, String> typeMap = const {},
  6. Map<String, String> fieldNameMappers = const {},
  7. Map<String, String> typeNameMappers = const {},
  8. List fragments = const [],
  9. List<String>? excludes,
  10. String? fragmentUri,
  11. String? declaration,
})

Implementation

const graphQL({
  this.uri,
  this.moduleName,
  this.includes,
  this.mixins = const {},
  this.typeMap = const {},
  this.fieldNameMappers = const {},
  this.typeNameMappers = const {},
  this.fragments = const [],
  this.excludes,
  this.fragmentUri,
  this.declaration,
});