GraphQLCodegenConfigScalar constructor

const GraphQLCodegenConfigScalar({
  1. required String type,
  2. String? import,
  3. String? fromJsonFunctionName,
  4. String? toJsonFunctionName,
})

Implementation

const GraphQLCodegenConfigScalar({
  required this.type,
  this.import,
  this.fromJsonFunctionName,
  this.toJsonFunctionName,
});