Config class
Constructors
-
Config({String? serializerSuffix, String? graphqlTypeSuffix, String? unionKeySuffix, String? graphQLFieldSuffix, bool? nullableFields, bool? omitFields, bool? omitPrivateFields, List<
String> ? omitFieldsNamed, String? instantiateCode, required List<CustomTypes> customTypes, EnumNameCase? enumValuesCase}) -
const
-
Config.fromJson(Map<
String, dynamic> map) -
factory
Properties
-
customTypes
→ List<
CustomTypes> -
final
- enumValuesCase → EnumNameCase?
-
final
- graphQLFieldSuffix → String
-
final
- graphqlTypeSuffix → String
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- instantiateCode → String?
-
final
- nullableFields → bool
-
final
- omitFields → bool
-
final
-
omitFieldsNamed
→ List<
String> -
final
- omitPrivateFields → bool
-
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- serializerSuffix → String
-
final
- unionKeySuffix → String
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object?> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
parseEnumCase(
String? enumValuesCaseStr) → EnumNameCase?