GraphQLCodegenConfigEnum constructor

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

Implementation

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