toJson method
Converts this object into JSON format.
optimizeFor
lets the program know what information to include in the
JSON data map.
- OptimizeFor.put (the default value) is used when making a data map that is being placed in a PUT request. This only includes data that has changed.
- OptimizeFor.putFull is used when a parent object updates; so, all of the children are required to be present for the PUT request.
- OptimizeFor.post is used when making a data map for a POST request.
- OptimizeFor.dontOptimize is used to get all of the data contained in this object.
Throws InvalidNameException if name doesn't have 1 to 32 characters
(inclusive), and optimizeFor
is not set to OptimizeFor.dontOptimize.
Implementation
Map<String, dynamic> toJson({OptimizeFor optimizeFor = OptimizeFor.put}) {
// Validate [name].
if (!identical(optimizeFor, OptimizeFor.dontOptimize)) {
if (!Validators.isValidName(name)) {
if (!identical(optimizeFor, OptimizeFor.put) || name != _originalName) {
throw InvalidNameException.withValue(name);
}
}
}
// PUT
if (identical(optimizeFor, OptimizeFor.put)) {
Map<String, dynamic> toReturn = {};
if (name != _originalName) {
toReturn[ApiFields.name] = name;
}
if (!identical(archetype, _originalArchetype)) {
toReturn[ApiFields.archetype] = archetype.value;
}
return toReturn;
}
// DEFAULT
return {
ApiFields.name: name,
ApiFields.archetype: archetype.value,
};
}