writeSetterDeclaration abstract method

void writeSetterDeclaration(
  1. String name, {
  2. void bodyWriter()?,
  3. bool isStatic = false,
  4. String? nameGroupName,
  5. DartType? parameterType,
  6. String? parameterTypeGroupName,
})

Write the code for a declaration of a setter with the given name. If a bodyWriter is provided, it will be invoked to write the body of the setter. (The space between the name and the body will automatically be written.) If isStatic is true, then the declaration will be preceded by the static keyword. If a nameGroupName is provided, the name of the getter will be included in the linked edit group with that name. If a parameterType is provided, then it will be used as the type of the parameter. If a parameterTypeGroupName is provided, then if a parameter type was written it will be in the linked edit group with that name.

Implementation

void writeSetterDeclaration(String name,
    {void Function()? bodyWriter,
    bool isStatic = false,
    String? nameGroupName,
    DartType? parameterType,
    String? parameterTypeGroupName});