-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.jsonc
More file actions
28 lines (28 loc) · 1015 Bytes
/
models.jsonc
File metadata and controls
28 lines (28 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[
{
// Generates Freezed classes.
// If it's true, everything below will be ignored because Freezed supports them all.
"freezed": false,
// Enable Json Serializable builder.
"serializable": false,
// Enable Equatable support.
// If it's true, equality operator and immutability will be ignored.
"equatable": false,
// Generate immutable classes.
"immutable": false,
// Add toString method to improve the debugging experience.
"toString": false,
// Add copyWith method (Recommended with immutable classes).
"copyWith": false,
// Add equality operator.
"equality": false,
// Indicate that a variable can have the value null.
"nullSafety": false,
// Default target directory.
"targetDirectory": "/lib/models",
// Activate as primary global configuration.
"primaryConfiguration": false,
// Disable ask for confirmation to start the conversion.
"fastMode": false
}
]